I have followed all steps however I got an error:

Microsoft JScript runtime error: 'style' is null or not an object

My code:

<html>
<head>
<link href="ext-1.0/resources/css/ext-all.css" rel="stylesheet"
type="text/css" />
<link href="ext-1.0/resources/css/ytheme-vista.css" rel="stylesheet"
type="text/css" />

<script src="/inmofusion2/libs_Ext/jquery/jquery.js" type="text/
javascript"></script>
<script language="javascript" src="dimension.js"></script>
<script language="javascript" src="ext-1.0/adapter/jquery/ext-jquery-
adapter.js"></script>
<script language="javascript" src="ext-1.0/ext-all.js"></script>
</head>
<body>

<a href="#" id="wheelink">Whee Click me Click me!</a>

<script>
$(document).ready(function(){
 $('#wheelink').bind('click',function()
    {
  Ext.Msg.alert('Whee alert!', 'Thanks for clicking me, WHEE!');
 });

});

</script>
</body>

Reply via email to