i am trying to add some custom stuff using jquery into LL.
I created a file called 'customview.html' and uploaded it to LL into a temp folder for testing.
this file contains some jquery code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></META>
<script src=" type="text/javascript"></script>
<script type="text/javascript">
function showPanel() {
$("#donkey").fadeOut(500);
}
</script>
</HEAD>
<body>
<div id="donkey" >
<input type="button" class="navPanel" style="width:117px; height:110px;" id="donkey2" onclick='showPanel();'></input>
</div>
</body>
</html>
the problem is it doesn't work in ie (i'm running ie v7). Works fine in FF though. i tried a lot of things but no cookies...
ie will show the button but the jquery method doesn't work, ff is good though ...
any ideas ? My setup is LL9.7, jquery 1.5, ie7, ff3.6
also the error message in ie basically says that the '$' is not recognized. (Object doesn't support this property or method)
I created a file called 'customview.html' and uploaded it to LL into a temp folder for testing.
this file contains some jquery code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></META>
<script src=" type="text/javascript"></script>
<script type="text/javascript">
function showPanel() {
$("#donkey").fadeOut(500);
}
</script>
</HEAD>
<body>
<div id="donkey" >
<input type="button" class="navPanel" style="width:117px; height:110px;" id="donkey2" onclick='showPanel();'></input>
</div>
</body>
</html>
the problem is it doesn't work in ie (i'm running ie v7). Works fine in FF though. i tried a lot of things but no cookies...
ie will show the button but the jquery method doesn't work, ff is good though ...
any ideas ? My setup is LL9.7, jquery 1.5, ie7, ff3.6
also the error message in ie basically says that the '$' is not recognized. (Object doesn't support this property or method)