I have a script that only seem to start when I resized the browser. I can't find out why and start to be short on time. So i was wondering if I could simulate the browser to resize after the page load to it could fire the script and then bring the browser resolution back to what it was.
Is this possible ?
edit
Ok now the script work if I load the page from a link in the menu, but fails if I click the browser's refresh button.
I have a script that only seem to start when I resized the browser. I can't find out why and start to be short on time. So i was wondering if I could simulate the browser to resize after the page load to it could fire the script and then bring the browser resolution back to what it was.
Is this possible ?
edit
Ok now the script work if I load the page from a link in the menu, but fails if I click the browser's refresh button.
Share edited Jan 30, 2013 at 20:16 Warface asked Jan 30, 2013 at 20:06 WarfaceWarface 5,11910 gold badges58 silver badges83 bronze badges 1- 1 Why is the script started when you resize the browser? Figure out that reason and post the code. Trying to force it to do something that it wasn't designed to do is a good way to cause yourself a lot of frustration. – zzzzBov Commented Jan 30, 2013 at 20:09
1 Answer
Reset to default 14Just trigger the resize
event:
$(function () {
$(window).resize();
});
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743688123a4490494.html
评论列表(0条)