JQuery Qtip not working in IE
Posted
by McNabbToSkins
on Stack Overflow
See other posts from Stack Overflow
or by McNabbToSkins
Published on 2010-04-05T10:54:17Z
Indexed on
2010/04/05
11:03 UTC
Read the original article
Hit count: 836
jQuery
I am using the QTIP plugin to create a tool tip over some text. It works great in firefox but not in IE. my code for the page looks like this
<script type="text/javascript">
$(document).ready( function() {
$("#label_PERSONAL").qtip({
content: 'this is a test!',
show: 'mouseover',
hide: 'mouseout'
});
});
</script>
<div id="main>
<label id="label_PERSONAL">Personal Inforamtion</label>
</div>
© Stack Overflow or respective owner