View Single Post
Old 10-03-2012, 08:36 AM   PM User | #1
Samz3n
New Coder

 
Join Date: Apr 2010
Posts: 67
Thanks: 30
Thanked 0 Times in 0 Posts
Samz3n is an unknown quantity at this point
Smile Help with Jquery Slide Toggle Fallback

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
Samz3n is offline   Reply With Quote