javascript - setTimeout function not working on Android -


i developing mobile application, , have call function after 2 seconds. using settimeout, working in chrome, on samsung not working. here code.

window.settimeout(function () {                             loadbooking(booking);                             localstoragewrapper.add('currentbooking', currentbooking);                             changecirclecolor(currentbooking, bookingsdata.length);                             $("#swiped").fadein('slow', 'linear');                         }, 700); 

do have idea why not working?


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -