JQuery.keynav not working after adding new code

I am using the jquery.keynav plugin to navigate a web page using five keys. The problem is that I am using a div highlight that directs the user through a web page that is ever in the div (text, etc.), It can be extracted and several operations can be performed, but the highlighter div does not work, but contained in the upper left corner of the web page (any web page). Here is the code. Code has been added to move the marker.

var offset = $('.'+e.onClass).offset(); $('#monitor').html($.htmlClean($('.'+e.onClass).html())); $('#highlighter').animate({'height' : $('.'+e.onClass).height() + 10, 'left' : (offset.left - 6) + 'px', 'top' : (offset.top - 10) + 'px', 'width' : $('.'+e.onClass).width() + 12 }, 300); //$('#highlighter').scrollIntoView(true); 

Editor: This seems to be a continuation of the keynav jquery plugin not working

+2
jquery jquery-plugins
May 24 '11 at 10:43
source share

No one has answered this question yet.

See similar questions:

one
Jquery keynav plugin not working

or similar:

1273
How to manage redirect request after jQuery Ajax call
1061
How to check if an item is visible after scrolling?
5
Get the actual left, top position of the rotated div
four
prototype: keep an item in view when scrolling
four
div shift after jquery scale effect
3
Attached navigation with full heights divs
one
JQuery plugins for page navigation
0
jquery.animate move fake box in another direction
0
jquery curvy table corners and full page div tag?
-3
The safest way to load javascript after fully loading HTML / DOM?



All Articles