I have some scripts on my page that going in conflict.
Firebug gives me this error:
Failed to load
Uncaught TypeError: Cannot call method 'click' of null
from this script:
<script type="text/javascript" src="jquery-1.2.pack.js"></script>
<script type="text/javascript" src="jquery.jPrintArea.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.link').click(function(){ $.jPrintArea('#tabella') });
});
</script>
What is the problem?
Many thanks!
ps. sorry for my bad english!
Replace:
With
Always make sure you have the latest version of JQuery before attempting to debug. Odds are heavy this issue was fixed in the core library.