[jQuery] Jquery noob and Firefox3
Hello,
I am starting out with Jquery, after w friend showed me the amazing
things you can do with it.
I am currently working through the tutorials but I do not see any of
the effects. I thought it was my fault but have followed this
tutorial: http://docs.jquery.com/Tutorials:How_jQuery_Works to the T
but nothing happens. I don't see any effects :(
Is it a Firefox3 thing or where can my problem be?
Here is my whole (simple) html file. The latest jquery.js file (1.2.6
minimal) is in the same directory as the html file - yet I when I
click the button - nothing happens. The same with fade effects and
slide..cant get it to work
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
// Your code goes here
<script type="text/javascript">
function big() {
$("#small").animate({
width: "1100px",
height: "1100px",
backgroundColor: "white",
color: "black"
});
}
</script>
</script>
<style type="text/css">
#small {
width: 200px;
height: 200px;
background: black;
color: white;
}
</style>
</head>
<body>
<div id="small">I'm a small div!</div>
<input type="button" onclick="big()" value="Make It Bigger (lol)" />
</body>
</html>
Can anyone point me in the right direction?
Thank you kindly,
Win