Following script not working
I used the following script in the Front Page it worked very well, when I paste same script in my site it does not work ? Other script I used from this site is working perfectly but this one does not work.
<html>
<head><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://www.************/fadeslideshow.js">
/***********************************************
* Ultimate Fade In Slideshow v2.0- (c) Dynamic Drive DHTML code library (Dynamic Drive DHTML(dynamic html) & JavaScript code library)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at Dynamic Drive DHTML(dynamic html) & JavaScript code library for this script and 100s more
***********************************************/
</script>
<script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [625, 275], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["http://************/banners/potalachina.jpg", "http://www.************/Tibet.php", "", "Potala Palace in Tibet."],
["http://************/banners/treking_ghandruk.jpg", "http://************/Nepal.php", "", "On the way to Ghandruk in Annapurna trekking"],
["http://************/banners/ilovenepal.jpg", "", "", "Students from Netherlands wearing I Love Nepal T-shirt while our presentation in the Netherlands"],
["http://************/banners/Tiger_nest_bhutan.JPG", "", "", "Tiger Nest or Takshang, Guru Rimpoche's cave in Bhutan."] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "peekaboo",
togglerid: ""
})
</script>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 2</title>
</head>
<body><div id="fadeshow1"></div>
<br />
</body>
</html>
Ajaxtab contents not working
1) Script Title: Ajaxtabs
2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...uppliment3.htm
3) Describe problem: I used above script in my site it looks fine but it shows default bullets along with tabs as well why this happened. How to remove it ?
following do not work in my site
I try to use the following script in my site but it shows default bullets along with tabs.
I test it at ************/test.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml2/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="http://www.************/ajaxtabs/ajaxtabs.css" />
<script type="text/javascript" src="http://www.************/ajaxtabs/ajaxtabs.js">
/***********************************************
* Ajax Tabs Content script v2.2- 頄ynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
</script>
</head>
<html>
<body>
<ul id="countrytabs" class="shadetabs">
<li><a href="external1.htm" rel="countrycontainer" class="selected">Itinerary</a></li>
<li><a href="external2.htm" rel="countrycontainer" id="favorite">Lodging & Dinning</a></li>
<li><a href="external3.htm" rel="countrycontainer">All included</a></li>
<li><a href="external4.htm" rel="countrycontainer">Trip Addon</a></li>
<li><a href="external4.htm" rel="countrycontainer">Map</a></li>
</ul>
<div id="countrydivcontainer" style="border:1px solid gray; width:450px; margin-bottom: 1em; padding: 10px">
</div>
<script type="text/javascript">
var countries=new ddajaxtabs("countrytabs", "countrydivcontainer")
countries.setpersist(true)
countries.setselectedClassTarget("link") //"link" or "linkparent"
countries.init()
</script></body>
</html>