Tagged Questions

5
votes
4answers
267 views

Lower the frequency of Javascript event polling

How do you lower the frequency of javascript event polling? The events I'm concerned about are onResize and onScroll. These events may be triggered dozens of times per second when someone resizes ...
4
votes
5answers
16k views

Javascript onresize event

If I have this window.onresize = function() { alert('resized!!'); }; My function gets fired multiple times throughout the resize, but I want to capture the completion of the resize. This is in ...
1
vote
3answers
400 views

Why is the resize event constantly firing when I assign it a handler with a timeout?

I assigned a timeout to my window.resize handler so that I wouldn't call my sizable amount resize code every time the resize event fires. My code looks like this: <script> function init() { ...
1
vote
3answers
2k views

Call onresize from ASP.NET content page

I have a JavaScript method that I need to run on one of my pages, in particular, the onresize event. However, I don't see how I can set that event from my content page. I wish I could just put it ...
0
votes
1answer
31 views

Reapply or adjust jCarouselLite on resize window

I'm trying to readjust, or destroy and reapply the jCarouselLite plugin when resizing the window, but I have no success, this is because I created an website where each page is a 'li' where, when ...
0
votes
3answers
264 views

window.onresize: firing a function during, and when resizing is complete

I'm new to JavaScript. I am trying to figure out how I would create an onresize function to fire a function during and another one after the user is done resizing the window. Most likely a session ...
0
votes
3answers
165 views

Problems with scrollbars on resize when trying to fit image to screen without distorting

I'm trying to make a full screen slideshow kind of effect jsFiddle code here, but I am having doubts as to how to do it. As can be seen from my example fiddle, I want the picture to be as big as ...
0
votes
0answers
222 views

javascript window.onresize not working in new .php file

I am trying to launch a javascript function when the window is resized. I orginally was toying around in an HTML file, and had this all working, with the correct call within my .js file: ...
0
votes
0answers
488 views

Creating an 'OnResize' event for HTML elements with the css3 property 'resize'

I have a resizable div element in which there are canvases, and I want each canvas to always have the same width and height as the div. I can't use width:100%; height:100%; because that will stretch ...
0
votes
2answers
694 views

trigger onresize in cross browser compatible manner

I would like to trigger the onresize event from my C# code behind. I think this can be done with Page.clientScript.RegisterScriptBlock(this.getType(), "id", "javascript code"); I have tried ...