Hello there..
I need to make some kind of fallback to my Jquery slide toggle so it is just a link/button for browsers with no java supported. Can anyone help me?
Javascript
:
Code:
$(document).ready(function(){
$("#inkassobox").toggle(function(){
$("#inkassobox").animate({'height': '280px'});
}, function(){
$("#inkassobox").animate({'height': '125px'});
});
$("#links").click(function(event){
event.stopPropagation();
});
});
http://www.shanem.dk/hornvind