bruckerrlb Posted June 10, 2008 Share Posted June 10, 2008 Hello, I have my links set up like those in dynamic drive slashdot, I have tried to find answers there, but I have customized this script too much, but what I'm trying to do is fairly simple, I need to make a link, but I cannot use the <a href="#"> tag, because it drives my site crazy, so I am trying to do this with javascript, I'm trying to make a <span> tag into a link. I am trying to use <span class="myclass" onclick="go ('index.php');"> but this is not working, does anyone know how I can turn the span tag into a link with onclick or is there a simpler way to do this (minus the <a> tag)? Thanks Link to comment https://forums.phpfreaks.com/topic/109592-solved-onclick-as-a-link/ Share on other sites More sharing options...
corbin Posted June 11, 2008 Share Posted June 11, 2008 <script language="javascript"> function go(url) { window.location = url; } </script> <span class="myclass" onclick="go ('index.php');"> Link to comment https://forums.phpfreaks.com/topic/109592-solved-onclick-as-a-link/#findComment-562693 Share on other sites More sharing options...
bruckerrlb Posted June 11, 2008 Author Share Posted June 11, 2008 thanks! Link to comment https://forums.phpfreaks.com/topic/109592-solved-onclick-as-a-link/#findComment-563109 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.