javascript thread: Simple script not working
I am using following code on my page it give an error on line (A)
saying ";" expected. If i remove that line from the code. The page does
not shows any error. I don' know what is wrong.
<HTML>
<HEAD>
<SCRIPT LANGUAGE ="JSCRIPT">
function abc()
{
document.write("sdfsd");
}
</SCRIPT>
</HEAD>
<TITLE>
Search Results
</TITLE>
<script type="text/javascript">
document.write ("ghdfhfghgfh");
call ABC();
</SCRIPT>
</BODY>
</HTML>
|





