So I have checked my script tags in my .jsp file:
<script type="text/javascript" src="javascript/jquery-1.3.1.min.js"></script>
<script language="JavaScript" > "some content here ...." </script>
and below in the same .jsp file I have a tag:
<body BGCOLOR="white" text="black" link="blue" vlink="red" onLoad="functionName();enableBackButton();">
However, in my JavaScript file I have:
$(document).ready(function(){
$('current').click(function(event){
function functionName() { ....... }
Somehow I keep getting an error in my Chrome console stating:
Uncaught ReferenceError: functionName is not defined