Need Whole Body Tag Mouseover Function
I need to whole body mouseover function. When I enter some other page, some of my content will append the particular div. My code is: $('body').mouseover(function() { $('#text')
Solution 1:
The body will not always have its full potential height if the contents fit in a lower height.
You could use $('html').mouseover
instead: http://jsfiddle.net/mPdd7/.
Post a Comment for "Need Whole Body Tag Mouseover Function"