Hello,
I tried this code as a test and have actually lots of fun trying jQuery functions. However, i came into a small issue regarding this one... in Firefox it does work perfect we see the whole animation but in EI 8 it slide but doesn't animate at all.. i am actually missing something ? is there any security with restricting javascript code in IE 8 ? .. the slide work but without animation so it might not be a security issue with javascript. Can you help me ?
Code:
<script type="text/javascript">
$(function () {
// Examples go here
$('#Button1').click(function () {
$('#DemoTable').slideToggle(500);
});
});
</script>
Thanks.