okay i have the following code below:
SCRIPT:
<script>
$(document).ready(function() {
$(".header").click(function () {
$(this).effect("bounce", { times:2 }, 200);
$(".links").show("slow");
});
});
</script>
HTML:
<body>
<div class="header">
<p><img src="images/logo.png" width="438" height="131" alt="Larz Conwell" /></p>
<p><span class="dash">//</span> Freelance Web Designer & Graphic Artist</p>
</div>
<div class="links">
</div>
</body>
and in IE it wont work at all, but it works on all the other browsers. what could be the problem?
also i tried another site i have with jquery on it and it works perfectly.
alert(1);in the click callback and see if that happens when you click. – Andrew Marshall Mar 5 '11 at 0:45