Forum Url:
http://allaboutbabvtest.smfforfree2.comSorry this is so long but I wanted to give my examples....just in case.
I don't know much about coding but I am usually able to figure out what I have done wrong. However, this time, I am lost and having a heck of a time figuring this out. I have tried using so many codes and none work on the Webpage
I haven't had issues "creating" the pages...I think it's what sibyl already said.
The issue is that the webpage editor is not keeping the code when adding it in the popup (using the HTML button in the editor)
I used this code - it was just a test and I need to change the drop down choices and links. After selecting the link and then "GO", nothing opens. This is just one of the many codes I have tried. It's almost as if it is not recognizing my links on every code I try. When I add the code to my test site portal, it works.
Webpage -
http://allaboutbabvtest.smfforfree2.com/pages/allaboutbabvtest/test.phpExample of it working on my test site -
http://allaboutbabvtest.smfforfree2.com/index.php<form accept-charset="UNKNOWN" enctype="application/x-www-form-urlencoded" method="get">
<p><select name="a310" size="1"> <option selected="65535" value="http://www.adultbabv.com/index.php/topic,1007.0.html">Hello Kitty</option> <option value="http://www.adultbabv.com/index.php/topic,1004.0.html">Holly Moose</option> <option value="http://www.adultbabv.com/index.php/topic,1000.0.html">Maxine Gift</option> <option value="http://www.adultbabv.com/index.php/topic,990.0.html">December Fountain</option> <option value="http://www.adultbabv.com/index.php/topic,959.0.html">11/24 update</option></select> <input onclick="location=document.a806.a310.options[document.a806.a310.selectedIndex].value" maxlength="2147483647" size="20" type="button" value="Go" /></p>
</form>
When I use the code below, the images won't display next to the box. When I add it to the portal on my test site, it works fine and the images display.
The webpage -
http://allaboutbabvtest.smfforfree2.com/pages/allaboutbabvtest/test.phpMy test site -
http://allaboutbabvtest.smfforfree2.com/index.php<form accept-charset="UNKNOWN" enctype="application/x-www-form-urlencoded" method="get">
<table style="height: 178px;" border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="35%" align="left" valign="top"><select name="dynamicselector2" size="4"> <option value="http://i519.photobucket.com/albums/u354/allaboutbabv/fountain%20prizes/8hat.gif">8 Hat</option> <option value="http://i519.photobucket.com/albums/u354/allaboutbabv/fountain%20prizes/8shirt.gif">8 Shirt</option> <option value="http://i519.photobucket.com/albums/u354/allaboutbabv/fountain%20prizes/8twistbretzel.gif">8 Twist Bretzel</option> <option value="http://i519.photobucket.com/albums/u354/allaboutbabv/fountain%20prizes/8twistnecklace.gif">8 Twist Necklace</option></select></td>
<td width="65%" align="left" valign="top"> </td>
</tr>
</tbody>
</table>
</form>
<p>
<script type="text/javascript"><!--
//Dynamic Image selector Script- © Dynamic Drive (www.dynamicdrive.com)
//For full source code, installation instructions,
//100's more DHTML scripts, visit dynamicdrive.com
//enter image descriptions ("" for blank)
var description=new Array()
description[0]="8 Hat: September"
description[1]="8 Shirt: September"
description[2]="8 Twist Bretzel: September"
description[3]="8 Twist Necklace: September"
var ie4=document.all
var ns6=document.getElementById
var tempobj=document.dynamicselector.dynamicselector2
if (ie4||ns6)
var contentobj=document.getElementById? document.getElementById("dynamic3"): document.all.dynamic3
function generateimage(which){
if (ie4||ns6){
contentobj.innerHTML='<center>Loading image...</center>'
contentobj.innerHTML='<center><img src="'+which+'" mce_src="'+which+'"><br><br>'+description[tempobj.options.selectedIndex]+'</center>'
}
else if (document.layers){
document.dynamic1.document.dynamic2.document.write('<center><img src="'+which+'" mce_src="'+which+'"><br><br>'+description[tempobj.options.selectedIndex]+'</center>')
document.dynamic1.document.dynamic2.document.close()
}
else
alert('You need NS 4+ or IE 4+ to view the images!')
}
function generatedefault(){
generateimage(tempobj.options[tempobj.options.selectedIndex].value)
}
if (ie4||ns6||document.layers){
if (tempobj.options.selectedIndex!=-1){
if (ns6)
generatedefault()
else
window.onload=generatedefault
}
}
// --></script>
</p>