Click to See Complete Forum and Search --> : Putting Clickable Link Button In Myspace Comment box


bigblockchev572
02-11-2006, 02:35 PM
Hello all. I've been trying to put a clickable link button as a comment on a friend's Myspace page following this code-

<FORM METHOD="LINK" ACTION="page1.htm">
<INPUT TYPE="submit" VALUE="Clickable Button">
</FORM>

I filled it out as so-

<FORM METHOD="LINK" ACTION="http://www.ls1tech.com">
<INPUT TYPE="submit" VALUE="Cool Car site">
</FORM>

However it doesn't work as a comment on my friend's page? I can click on the button, but it is idle. It works if I post it on my page, but not as a comment. Can you help me?
Thanks,
Philip S. :)

pcthug
02-11-2006, 06:20 PM
Try this:
<a href="http://www.ls1tech.com" style="text-decoration:none">
<button height="25px" width="130px">Cool Car Site</button></a>

bigblockchev572
02-13-2006, 07:17 AM
Try this:
<a href="http://www.ls1tech.com" style="text-decoration:none">
<button height="25px" width="130px">Cool Car Site</button></a>

That doesn't work either. :confused:

pcthug
02-13-2006, 07:42 AM
Sorry, that last one wasnt IE compatible

<button onclick="window.location.href='http://www.ls1tech.com';" height="25px" width="130px">Cool Car Site</button>Should do teh trick :)

bigblockchev572
02-13-2006, 12:05 PM
So the final form should be this?

<a href=<button onclick="window.location.href='http://www.ls1tech.com';" height="25px" width="130px">Cool Car Site</button></a>

It still doesn't work. I guess give another shot? :p

pcthug
02-13-2006, 07:02 PM
No need for the <a href= </a> tags, the linking is done with Javascript

<button onclick="window.location.href='http://www.ls1tech.com';" height="25px" width="130px">Cool Car Site</button>

bigblockchev572
02-14-2006, 12:04 PM
That doesn't work. No link or button appears, just "Cool car site". Hmmm, I guess this is a challenge? :)