this really stupid i know, but here goes:
I have the following image:
<img border="0" src="images/question.bmp" width="15" height="15" onclick="busy()">
which has the busy() function associated with it:
function busy(){
alert ("From your AVT Communicator window, transfer the BUSY amount from the WORKING TOTAL section")
}
I have the alert in a function as it seems to have issues with me doing onclick="alert ("the message")" directly in the image tag, and throws a syntax error at me when i load the page. With the alert, i initially had function busy() just alert("hello"), which it had problems with. Now that I have the fill message in there, it's complaining about "Object does not support this property or method"
does anyone have any ideas as to why this could be so?