I want to display:none if user hovers my banner for 500ms, but the following JQuery code is not working. Where is mistake?
$('.banner').hover(function() {
setTimeout(function(){
$(this).css('display','none');
}, 500);
});
|
I want to
|
||||
|
The
Here is a demo: http://jsfiddle.net/hVejj/ Update
Here is a demo for this update: http://jsfiddle.net/hVejj/1/ |
|||||||
|
|
You can't pass
|
|||
|
|
|
If you want it to hide the banner when you've hovered over it for 500ms, then you need to save a reference to the DOM element being hidden. You probably also want to clear the timer if you've stopped hovering before the timeout fires. You'll need the signature that takes an in AND out handler separately. Store the timer handle and clear it when you stop hovering if it hasn't already expired.
|
|||
|
|
|
You need to give the callback function access to the right
|
|||
|
|
|
The following code will hide the banner after the user hovers for more than 500 ms:
|
|||
|
|
|
If you're trying to do what I think, something like this should make it work:
` |
||||
|
|
Try this:
The this variable changes meaning based on scope. Once inside the the function in the setTimeout() call this no longer refers to the .banner element. So you need to "save" that reference so you can use in the function in the setTimeout() call. |
||||
|
|
thisinside the callback refers towindow. – Felix Kling Dec 12 '11 at 19:33