Hello all,
I am using IE 8, have got a web page with 2 jquery extensions (one is a menu, the other one is a fency textbox). When I run each of the extensions alone they work fine, when I run them together I get the following js error:
Error: Object doesn't support this property or method
I am registring the handlers in the following way:
The Textbox:
<script type="text/javascript">
$().ready(function() {
$('#ctl00_Main_Status1_tbStatus').textboxhelp({ help: 'I am thinking of a...' });
});
</script>
The Menu:
<script type="text/javascript">
$(function() {
alert('in menu');
$("#1, #2, #3").lavaLamp({
fx: "backout",
speed: 700,
click: function(event, menuItem) {
return false;
}
});
});
</script>
Any help would be greatly appriciated, I am very new to the jquery...