Forum Moderators: open

Message Too Old, No Replies

Quote problem

single and double driving me crazy

         

Emperor

11:31 pm on Nov 9, 2004 (gmt 0)

10+ Year Member



Hi guys,

How do I do this:

<a href="#" onmouseover="window.status='Status Text'; return true;">

...in a document.write?

document.write('the above');

I tried it a few ways but I can't get it to work.

Take care,
Cyrus

Lance

3:12 am on Nov 10, 2004 (gmt 0)

10+ Year Member



Try this out:

<script>
document.write('<a href="#" onmouseover="window.status=\'Status Text\'; return true;">A Link</a>');
</script>