jquery - slide.toggle menu is working fine in all browser but not in default android browser -


the slide.toggle menu working fine in browsers not in default android browser use script slide, hide show toggle menu:

$('#menubutton').click(function() {     $('.menuslider').slidetoggle(600); } $(window).resize(function() {     if($(window).width() > 600) {         $('.menuslider').show();     }     if($(window).width() < 600) {         $('.menuslider').hide();     } } 

when lose 'facebook button script' slider working, slide @ diagonal. i'm little confused..

here can see slidermenu in action http://www.vinoecucina.nl/test/test.html

can please me?

thanks in advance.

these can help.

clean errors.

enter image description here


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -