Help required - Want to add Image ALT tag and Image Title Tag in Slide show images
I know it is easy for most of you but I have no idea how to do it.
I want to add an ALT tag and Title tag to my images rotating inside a slide show.
I think it is a Java Script.
Below is my full script for the Slide show.
========================================================
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="fadeslideshow.js">
</script>
<script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [900, 170], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images/p1.jpg", "http://www.mywebsite.com/Page1.php", "", ""],
["images/p2.jpg", "http://www.mywebsite.com/Page2.php", "", ""],
["images/p3.jpg", "http://www.mywebsite.com/Page3.php", "", ""],
["images/p4.jpg", "http://www.mywebsite.com/Page4.php", "", ""],
["images/p5.jpg", "http://www.mywebsite.com/Page5.php", "", ""]
//<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:5000, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: ""
})
</script>
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "3cf62992-1901-4ad5-92ee-cba7628d80f2", doNotHash: true, doNotCopy: true, hashAddressBar: false});</script>
<script type="text/javascript">
<!--
var numbers='1234567890'
function alpha(e,allow) {
var k;
k=document.all?parseInt(e.keyCode): parseInt(e.which);
return (allow.indexOf(String.fromCharCode(k))!=-1);
}
// -->
</script>
========================================================