View Single Post
  #4 (permalink)  
Old 01-18-04, 10:27 PM
cshark's Avatar
cshark cshark is offline
Wannabe Coder
 
Join Date: Jan 2004
Location: Indianapolis
Posts: 155
Thanks: 0
Thanked 0 Times in 0 Posts
What if you did something like this?

<a href="whatever.htm" target="main" onClick="DoWhatever()">Hello</a>

If you're document.writing it would probably look like

<script language="javascript">

var contentxes = "<a href='whatever.htm' target='main' onClick='DoWhatever()'>Hello</a>"

document.write(contentxes)

</script>

Or am I completely missing what you're trying to do?
__________________
Later
Cshark

Try <a href="http://shorthand.org">Shorthand</a>, an exciting new language for web applications.
Reply With Quote