Create your own multi image listing
<script language="JavaScript"><!-- // dont make any changes here
function swap(source) {
if (document.images) {
document.images['myImage'].src = source;
}
}
//--></script>
<form name="myform">
<table align="center" width="80%" border="0" cellpadding="2"
cellspacing="2">
<tr>
<td align="center">
<!-- link to primary image here -->
<img src="http://your_url_to_image_1" name="myImage">
</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td align="center">
<select onChange="swap(this.options[selectedIndex].value)">
<option value="http://your_url_to_image_1"> Select other images ....
<!-- repeat the next line as many times as required -->
<option value="http://your_url_to_image_2"> text for image 2.
<!-- eg -->
<option value="http://your_url_to_image_3"> text for image 3.
</select>
</td>
</tr>
</table>
</form>
<table bgcolor=white align=center border=1><tr><td><font size=-2>Script Provided by <a href="http://www.ukauctionhelp.co.uk" target="_blank">UK Auction Help</a></font></td></tr></table>
<!-- thats it. -->
|
To use the menu in your own auction listings copy the whole of the block of code above into the item description box
in eBay.
- Change the URL of the first image, highlighted in red, which appears twice
- Add extra images, highlighted in blue, (repeat the whole line)
- Change text which will appear in the menu, highlighted in green
As well as using this menu to display multiple pictures of your item
you could use it to link to a larger, hi resolution,
copy of the initial image.
You can copy this code to a plain text file on your PC, make the necessary changes, save as a HTML
file type, double click on the saved file to preview in your browser and then copy the code into the eBay
description box.
Javascript by baconbuttie
|