pleek Posted November 20, 2007 Share Posted November 20, 2007 ok so i have this part on my website that i have writting to collaps the shout box. The script works perfectly but i wan the plus and minus words and pics to replace themselves when u click on them I got the text and pic to replace once but i can't get it to change to the other text and pic every time u click it my code is <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <TITLE>Untitled</TITLE> <script type="text/javascript"> function hide() { document.getElementById("PAR").innerHTML = "<a href='javascript: void(0)'><IMG SRC='plus.GIF' WIDTH='10' HEIGHT='10'> Show Shout Box</a>" } </script> </HEAD> <BODY> <p id="PAR" onclick="hide()"> <a href="javascript: void(0))"><IMG SRC="minus.gif" WIDTH="10" HEIGHT="10"> Hide Shout Box</a> </p> </a> </BODY> </HTML> this works fine the first time but i don't know how to make it change everytime u click on it, Can somebody help me out here? Quote Link to comment Share on other sites More sharing options...
phpQuestioner Posted November 20, 2007 Share Posted November 20, 2007 try this: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <TITLE>Untitled</TITLE> <script type="text/javascript"> function hide() { document.getElementById("PAR").innerHTML = "<a href='javascript: void(0)' onclick='show()'><IMG SRC='plus.GIF' WIDTH='10' HEIGHT='10'> Show Shout Box</a>" } function show() { document.getElementById("PAR").innerHTML = "<a href='javascript: void(0)' onclick='hide()'><IMG SRC='minus.GIF' WIDTH='10' HEIGHT='10'> Hide Shout Box</a>" } </script> </HEAD> <BODY> <p id="PAR" onclick="hide()"> <a href="javascript: void(0))"><IMG SRC="minus.gif" WIDTH="10" HEIGHT="10"> Hide Shout Box</a> </p> Quote Link to comment Share on other sites More sharing options...
pleek Posted November 21, 2007 Author Share Posted November 21, 2007 thanks for the help man the code worked great. Im looking at it now to see what i did wrong. Thanks alot!!!! 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.