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 Quote Link to comment 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');"> Quote Link to comment Share on other sites More sharing options...
bruckerrlb Posted June 11, 2008 Author Share Posted June 11, 2008 thanks! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.