Help Please !!!

liunx

Guest
I dont knwo to much about HTML codeing I am hopeing some one can help me. What im trying to do is creat a HTML code that will open 2 different pages with one link.<br />
<br />
I want the link to say ( Download <!--more--> ) and I want it to open these 2 pages <br />
<br />
<!-- m --><a class="postlink" href="http://www.sniger.homestead.com/files/WARCRAFT.3.104.LEITWOLF.NOCD.ZIP">http://www.sniger.homestead.com/files/W ... F.NOCD.ZIP</a><!-- m --><br />
<br />
AND<br />
<br />
<!-- m --><a class="postlink" href="http://www.clickxchange.com/fr.phtml?act=898675.9">http://www.clickxchange.com/fr.phtml?act=898675.9</a><!-- m --><br />
<br />
Please can some one help or show me some one who can. <br />
Thanks<br />
-Sniger<!--content-->Eather the Code that you gave me does not work or i did not enter the links right can you or some one else help in more detail. thank you<!--content-->Originally posted by Aarondb123 <br />
Eather the Code that you gave me does not work or i did not enter the links right can you or some one else help in more detail. thank you <br />
<br />
You need to replace the "..." in both the href and the onclick with 1 of the links in each.<br />
<br />
Also, if you have a preference for which link should always work (even without javascript) it should be the one in the href=http://www.webdeveloper.com/forum/archive/index.php/"" and the onclick will only wrk if JS is available.<br />
<br />
Depending on your desired effect you might want to use alos eg target="_blank"<!--content-->thanks so much for all your help i have just one more qestion how do i get the link to open in a new window and if i want to add a third link what do i need to do.<br />
<br />
Thanks again for your help<!--content-->This is my HTML code <br />
<br />
<a <br />
href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.sniger.homestead.com/files/platinum.zip" onClick="self.location.href='http://www.clickxchange.com/fr.phtml?act=898675.9';return true;">Download <!--more--></a><br />
<br />
Where do I puit the HEML code to open the new window window.open()<!--content-->Originally posted by Aarondb123 <br />
This is my HTML code <br />
<br />
<a <br />
href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.sniger.homestead.com/files/platinum.zip" onClick="self.location.href='http://www.clickxchange.com/fr.phtml?act=898675.9';return true;">Download <!--more--></a><br />
<br />
Where do I puit the HEML code to open the new window window.open() <br />
<br />
Alternativly, if you are NOT looking for 2 new windows, but want to load one of the links in the exsisting window, this would make it work too<br />
<br />
<a target="_blank"<br />
href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.sniger.homestead.com/files/platinum.zip" onClick="self.location.href='http://www.clickxchange.com/fr.phtml?act=898675.9';return true;">Download <!--more--></a><!--content-->
 
Back
Top