[jQuery] Error: jQuery is not defined (LINE 387) - BlockUI Plugin (v1.33)
I am trying to run a simple call to jQuery BlockUI Plugin (v1.33), but
this give error: Error: jQuery is not defined (LINE 387) -
Line: 387, see above:
.
..
.....
function sz(el, p) {
return parseInt($.css(el,p))||0;
};
})(jQuery); (LINE 387)
However I am importing correctly the JQUERY, see:
...
....
<script type="text/javascript" src="jquery.blockUI.js"></script>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#test').click(function() {
$.blockUI({ message: "<h1>Only Test</h1>" });
});
});
</script>
</head>
<body>
<a href="#" id="test">Abre</a>
</body></html>
Can anyone help?
Thanks.