nagios
+ Reply to Thread
Page 2 of 2 FirstFirst 12
Results 16 to 28 of 28

Thread: Free JavaScript Code Downloads

  1. #16
    Join Date
    Sep 2009
    Posts
    25

    Line Graph script

    This is a purely DHTML/ [URL="http://www.javascript****.com/javascript/css/"]CSS[/URL] based Line Graph script. It loads fast and blends in with the rest of the page. You can even use a transparent [URL="http://www.javascript****.com/javascript/backgroun... [URL="http://www.javascript****.com/line-graph-script-index.html/en//"]detail[/URL] at [URL="http://www.javascript****.com/"]JavaScript****.com - 2.000+ free JavaScript codes[/URL]

    [URL="http://www.javascript****.com/javascript/graphic/line-graph-script-index/preview/en/"][IMG]http://www.javascript****.com/javascript.images/graphic/line-graph-script-index.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/line-graph-script-index.html/en/"]JavaScript Line Graph script[/URL]

    How to setup

    Step *: Copy & Paste JavaScript code below in your HEAD section
    JavaScript
    Code:
    <script type="text/javascript" src="wz_jsgraphics.js"></script>
    <script type="text/javascript" src="line.js"></script>
    	<!--
        	This script downloaded from www.JavaScript****.com
        	Come to view and download over 2000+ free javascript at www.JavaScript****.com
    	-->
    Step 2: Copy & Paste HTML code below in your BODY section
    HTML
    Code:
    <div id="lineCanvas" style="overflow: auto; position:relative;height:*00px;width:400px;"></div>
    
    <script type="text/javascript">
    var g = new line_graph();
    g.add('*', *45);
    g.add('2', 0);
    g.add('*', *75);
    g.add('4', **0);
    g.add('5', *50);
    g.add('6', *75);
    g.add('7', 205);
    g.add('8', *25);
    g.add('*', *25);
    g.add('*0', **5);
    g.add('**', *25);
    
    g.render("lineCanvas", "Line Graph");
    </script>
    	<!--
        	This script downloaded from www.JavaScript****.com
        	Come to view and download over 2000+ free javascript at www.JavaScript****.com
    	-->
    Step *: Download files below
    Files
    [URL="http://javascript****.com/javascript/graphic/Line_Graph_script/line.js"]line.js[/URL]
    [URL="http://javascript****.com/javascript/graphic/Line_Graph_script/wz_jsgraphics.js"]wz_jsgraphics.js[/URL]






    [URL="http://www.javascript****.com/bookmark-page-script.html"]JavaScript Bookmark Page script[/URL] - [URL="http://www.javascript****.com/color-wheel.html"]JavaScript Color Wheel[/URL] - [URL="http://www.javascript****.com/image-slideshow-transition.html"]JavaScript Image slideshow[/URL]

  2. #17
    Join Date
    Sep 2009
    Posts
    25

    Falling Snowflakes with images

    Decorate your webpage with this great animated document effect! Watch as snow fall gently trickles down the page, then disappear. The image of snow flakes used is changeable, so snow definitely isn't ... [URL="http://www.javascript****.com/falling-snowflakes-with-images.html/en//"]detail[/URL] at [URL="http://www.javascript****.com/"]JavaScript****.com - 2.000+ free JavaScript codes[/URL]

    [URL="http://www.javascript****.com/javascript/multimedia/events/falling-snowflakes-with-images/preview/en/"][IMG]http://www.javascript****.com/javascript.images/multimedia/falling-snowflakes-with-images.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/falling-snowflakes-with-images.html/en/"]JavaScript Falling Snowflakes with images[/URL]

    How to setup

    Step *: Place JavaScript below in your HEAD section
    JavaScript
    Code:
    <script type="text/javascript">
    
    /******************************************
    * Snow Effect Script- By Altan d.o.o. (http://www.altan.hr/snow/index.html)
    ******************************************/
      
      //Configure below to change URL path to the snow image
      var snowsrc="snow*.gif"
      // Configure below to change number of snow to render
      var no = *0;
      // Configure whether snow should disappear after x seconds (0=never):
      var hidesnowtime = 0;
      // Configure how much snow should drop down before fading ("windowheight" or "pageheight")
      var snowdistance = "pageheight";
    
    ///////////Stop Config//////////////////////////////////
    
      var ie4up = (document.all) ? * : 0;
      var ns6up = (document.getElementById&&!document.all) ? * : 0;
    
    	function iecompattest(){
    	return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
    	}
    
      var dx, xp, yp;    // coordinate and position variables
      var am, stx, sty;  // amplitude and step variables
      var i, doc_width = 800, doc_height = 600; 
      
      if (ns6up) {
        doc_width = self.innerWidth;
        doc_height = self.innerHeight;
      } else if (ie4up) {
        doc_width = iecompattest().clientWidth;
        doc_height = iecompattest().clientHeight;
      }
    
      dx = new Array();
      xp = new Array();
      yp = new Array();
      am = new Array();
      stx = new Array();
      sty = new Array();
      snowsrc=(snowsrc.indexOf("dynamicdrive.com")!=-*)? "snow.gif" : snowsrc
      for (i = 0; i < no; ++ i) {  
        dx[i] = 0;                        // set coordinate variables
        xp[i] = Math.random()*(doc_width-50);  // set position variables
        yp[i] = Math.random()*doc_height;
        am[i] = Math.random()*20;         // set amplitude variables
        stx[i] = 0.02 + Math.random()/*0; // set step variables
        sty[i] = 0.7 + Math.random();     // set step variables
    		if (ie4up||ns6up) {
          if (i == 0) {
            document.write("<div id="dot"+ i +"" style="POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: *5px; LEFT: *5px;"><a href="http://dynamicdrive.com"><img src='"+snowsrc+"' border="0"></a></div>");
          } else {
            document.write("<div id="dot"+ i +"" style="POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: *5px; LEFT: *5px;"><img src='"+snowsrc+"' border="0"></div>");
          }
        }
      }
    
      function snowIE_NS6() {  // IE and NS6 main animation function
        doc_width = ns6up?window.innerWidth-*0 : iecompattest().clientWidth-*0;
    		doc_height=(window.innerHeight && snowdistance=="windowheight")? window.innerHeight : (ie4up && snowdistance=="windowheight")?  iecompattest().clientHeight : (ie4up && !window.opera && snowdistance=="pageheight")? iecompattest().scrollHeight : iecompattest().offsetHeight;
        for (i = 0; i < no; ++ i) {  // iterate for every dot
          yp[i] += sty[i];
          if (yp[i] > doc_height-50) {
            xp[i] = Math.random()*(doc_width-am[i]-*0);
            yp[i] = 0;
            stx[i] = 0.02 + Math.random()/*0;
            sty[i] = 0.7 + Math.random();
          }
          dx[i] += stx[i];
          document.getElementById("dot"+i).style.top=yp[i]+"px";
          document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px";  
        }
        snowtimer=setTimeout("snowIE_NS6()", *0);
      }
    
    	function hidesnow(){
    		if (window.snowtimer) clearTimeout(snowtimer)
    		for (i=0; i<no; i++) document.getElementById("dot"+i).style.visibility="hidden"
    	}
    		
    
    if (ie4up||ns6up){
        snowIE_NS6();
    		if (hidesnowtime>0)
    		setTimeout("hidesnow()", hidesnowtime**000)
    		}
    
    </script>
    Step 2: must download files below
    Files
    [URL="http://www.javascript****.com/javascript/multimedia/Falling_Snowflakes_with_images/snow*.gif"]snow*.gif[/URL]






    [URL="http://www.javascript****.com/web-based-music-player.html/en/"]Javascript Music Player[/URL] - [URL="http://www.javascript****.com/random-text-generator.html"]Random Text Generator[/URL] - [URL="http://www.javascript****.com/up-down-floating-image.html"]Floating Image Script[/URL]

  3. #18
    Join Date
    Sep 2009
    Posts
    25

    40 Super Nice JavaScript Extensions and Plugins

    In the environment of Internet in any country, beside the web promotion - one of [URL="http://www.mediabug.com/"]Internet marketing UK[/URL] aspects; if a company or a website want to success; it nee... [URL="http://www.javascript****.com/40-super-nice-javascript-extensions-and-plugins.html/en//"]detail[/URL] at [URL="http://www.javascript****.com/"]JavaScript****.com - 2.000+ free JavaScript codes[/URL]

    [URL="http://www.javascript****.com/javascript/article/40-super-nice-javascript-extensions-and-plugins/preview/en/"][IMG]http://www.javascript****.com/javascript.images/article/40-super-nice-javascript-extensions-and-plugins.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/40-super-nice-javascript-extensions-and-plugins.html/en/"]JavaScript 40 Super Nice JavaScript Extensions and Plugins[/URL]

    How to setup






    [URL="http://www.javascript****.com/web-based-music-player.html/en/"]Javascript Music Player[/URL] - [URL="http://www.javascript****.com/random-text-generator.html"]Random Text Generator[/URL] - [URL="http://www.javascript****.com/up-down-floating-image.html"]Floating Image Script[/URL]

  4. #19
    Join Date
    Oct 2009
    Posts
    8

    Free JavaScript Code Downloads

    dev-c is good.

    gcc is the classic one, but it pretty much works on command line only.

    or there are a few editors out there that are free that will work with gcc to edit and compile code at the same time.

  5. #20
    Join Date
    Sep 2009
    Posts
    25

    World clock with unique display

    World [URL="http://www.javascript****.com/javascript/time/clock-time-date/"]clock[/URL] script with unusual design. Cross-browser (IE4 contains additional visual effects). World [URL="http://www.javascript****.com/javascript/time/clock-time-date/"]clock<... [URL="http://www.javascript****.com/world-clock-with-unique-display.html/en//"]detail[/URL] at [URL="http://www.javascript****.com/"]JavaScript****.com - 2.000+ free JavaScript codes[/URL]

    [URL="http://www.javascript****.com/javascript/time/clock-time-date/world-clock-with-unique-display/preview/en/"][IMG]http://www.javascript****.com/javascript.images/time/world-clock-with-unique-display.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/world-clock-with-unique-display.html/en/"]JavaScript World clock with unique display[/URL]

    How to setup

    Step *: Copy & Paste CSS code below in your HEAD section
    CSS
    Code:
    <STYLE>
    .topcoverlay {
    	BACKGROUND-COLOR: #ffffff; FILTER: alpha(opacity=85); HEIGHT: 240px; LEFT: 0px; POSITION: absolute; TOP: 0px; WIDTH: *000px
    }
    .bottomcoverlay {
    	BACKGROUND-COLOR: #ffffff; FILTER: alpha(opacity=85); HEIGHT: *000px; LEFT: 0px; POSITION: absolute; TOP: 25*px; WIDTH: *000px
    }
    </STYLE>
    	<!--
        	This script downloaded from www.JavaScript****.com
        	Come to view and download over 2000+ free javascript at www.JavaScript****.com
    	-->
    Step 2: Use JavaScript code below to setup the script
    JavaScript
    Code:
    <SCRIPT language=JavaScript>
    <!-- Beginning of JavaScript -
    
    
    var startpos=240
    var bildhoehe=720
    var step=*
    var makepause=200
    var difference=0
    var local=*
    var timer
    
    function showtimelocal() {
    	if (local==*) {
    		var  thistime= new Date()
    		var seconds=thistime.getSeconds()
    		var minutes=thistime.getMinutes()
    		var hours=thistime.getHours()
    		if (hours>=24) {hours=hours-24}
    		var secondspos=Math.floor(bildhoehe/60*seconds)
    		var minutespos=Math.floor(bildhoehe/60*minutes)
    		var hourspos=Math.floor(bildhoehe/60*hours)
    		
    		if(document.all) {
    			document.all.secondsdiv.style.posTop=startpos-secondspos
    			document.all.minutesdiv.style.posTop=startpos-minutespos
    			document.all.hoursdiv.style.posTop=startpos-hourspos
    		}
    		
    		if(document.layers) {
    			document.secondsdiv.top=startpos-secondspos
    			document.minutesdiv.top=startpos-minutespos
    			document.hoursdiv.top=startpos-hourspos
    		}
    		var timer=setTimeout("showtimelocal()",makepause)
    	}
    	else {
    		clearTimeout(timer)
    	}
    }
    
    function preUTC(thisdifference) {
    	clearTimeout(timer)
    	difference=eval(thisdifference)
    	local=0
    	showtimeUTC()
    }
    
    function inititate() {
    	if (document.layers) {
    		document.markernetscape*.visibility="VISIBLE"
    		document.markernetscape2.visibility="VISIBLE"
    	}
    	showtimelocal()
    }
    
    function prelocal() {
    	if (document.layers) {document.markernetscape.visibility="VISIBLE"}
    	clearTimeout(timer)
    	local=*
    	showtimelocal()
    }
    
    function showtimeUTC() {
    	if (local==0) {
    		var  thistime= new Date()
    		var seconds=thistime.getSeconds()
    		var minutes=thistime.getMinutes()
    		var hours=thistime.getUTCHours()
    		hours+=difference
    		if (hours>=24) {hours=hours-24}
    		var secondspos=Math.floor(bildhoehe/60*seconds)
    		var minutespos=Math.floor(bildhoehe/60*minutes)
    		var hourspos=Math.floor(bildhoehe/60*hours)
    		
    		if(document.all) {
    			document.all.secondsdiv.style.posTop=startpos-secondspos
    			document.all.minutesdiv.style.posTop=startpos-minutespos
    			document.all.hoursdiv.style.posTop=startpos-hourspos
    		}
    		
    		if(document.layers) {
    			document.secondsdiv.top=startpos-secondspos
    			document.minutesdiv.top=startpos-minutespos
    			document.hoursdiv.top=startpos-hourspos
    		}
    		var timer=setTimeout("showtimeUTC()",makepause)
    	}
    	else {
    		clearTimeout(timer)
    	}
    }
    
    window.onload=inititate
    // - End of JavaScript - -->
    </SCRIPT>
    	<!--
        	This script downloaded from www.JavaScript****.com
        	Come to view and download over 2000+ free javascript at www.JavaScript****.com
    	-->
    Step *: Place HTML below in your BODY section
    HTML
    Code:
    <DIV id=secondsdiv style="LEFT: 200px; POSITION: absolute; TOP: 240px">
      <IMG 
    src="rotaclock2**0.gif" width="*4" height="720"></DIV>
    <DIV id=minutesdiv style="LEFT: *80px; POSITION: absolute">
      <IMG 
    src="rotaclock2**0.gif" width="*4" height="720"></DIV>
    <DIV id=hoursdiv style="LEFT: *60px; POSITION: absolute; TOP: 240px">
      <IMG 
    src="rotaclock2**0.gif" width="*4" height="720"></DIV>
    <DIV class=topcoverlay id=topcover></DIV>
    <DIV class=bottomcoverlay id=bottomcover></DIV>
    <DIV id=limiter* 
    style="COLOR: #ff0000; FONT-FAMILY: Arial; FONT-SIZE: 8pt; FONT-WEIGHT: bold; LEFT: *76px; POSITION: absolute; TOP: 24*px">
    	:</DIV>
    <DIV id=limiter2 
    style="COLOR: #ff0000; FONT-FAMILY: Arial; FONT-SIZE: 8pt; FONT-WEIGHT: bold; LEFT: **6px; POSITION: absolute; TOP: 24*px">
    	:</DIV>
    <DIV id=markernetscape* 
    style="COLOR: #ff0000; FONT-FAMILY: Arial; FONT-SIZE: *2pt; FONT-WEIGHT: bold; LEFT: *22px; POSITION: absolute; TOP: 248px; VISIBILITY: hidden"><IMG 
    height=* src="line2**0.gif" width=20></DIV>
    <DIV id=markernetscape2 
    style="COLOR: #ff0000; FONT-FAMILY: Arial; FONT-SIZE: *2pt; FONT-WEIGHT: bold; LEFT: 2*0px; POSITION: absolute; TOP: 248px; VISIBILITY: hidden"><IMG 
    height=* src="js 46_files/line2**0.gif" width=20></DIV>
    <DIV id=timezones 
    style="COLOR: #ff0000; FONT-FAMILY: Arial; FONT-SIZE: 8pt; LEFT: *0px; POSITION: absolute; TOP: 5px"><A 
    href="#" 
    onmouseover=prelocal()>&gt;&gt; local time</A><BR><A 
    href="#" 
    onmouseover="preUTC('-8')">Anchorage</A><BR><A 
    href="#" 
    onmouseover="preUTC('-**')">Auckland</A><BR><A 
    href="#" 
    onmouseover="preUTC('*')">Baghdad</A><BR><A 
    href="#" 
    onmouseover="preUTC('8')">Bejing</A><BR><A 
    href="#" 
    onmouseover="preUTC('-*')">Buenos Aires</A><BR><A 
    href="#" 
    onmouseover="preUTC('-6')">Denver</A><BR><A 
    href="#" 
    onmouseover="preUTC('8')">Hongkong</A><BR><A 
    href="#" 
    onmouseover="preUTC('-*')">Honolulu</A><BR><A 
    href="#" 
    onmouseover="preUTC('8')">Jakarta</A><BR><A 
    href="#" 
    onmouseover="preUTC('2')">Johannesburg</A><BR><A 
    href="#" 
    onmouseover="preUTC('2')">Kairo</A><BR><A 
    href="#" 
    onmouseover="preUTC('-5')">Lima</A><BR><A 
    href="#" 
    onmouseover="preUTC('*')">London</A><BR><A 
    href="#" 
    onmouseover="preUTC('-7')">Los Angeles</A><BR><A 
    href="#" 
    onmouseover="preUTC('4')">Moscow</A><BR><A 
    href="#" 
    onmouseover="preUTC('*')">Nairobi</A><BR><A 
    href="#" 
    onmouseover="preUTC('-4')">New York</A><BR><A 
    href="#" 
    onmouseover="preUTC('2')">Paris</A><BR><A 
    href="#" 
    onmouseover="preUTC('-2')">Rio</A><BR><A 
    href="#" 
    onmouseover="preUTC('*0')">Sydney</A><BR><A 
    href="#" 
    onmouseover="preUTC('*')">Tokyo</A><BR></DIV>
    	<!--
        	This script downloaded from www.JavaScript****.com
        	Come to view and download over 2000+ free javascript at www.JavaScript****.com
    	-->
    Step 4: Download files below
    Files
    [URL="http://javascript****.com/javascript/time/rotaclock2**0.gif"]rotaclock2**0.gif[/URL]






    [URL="http://www.javascript****.com/line-graph-script-index.html"]JavaScript Line Graph script[/URL] - [URL="http://www.javascript****.com/virtualkey***rd-index.html"]JavaScript Virtual Key***rd[/URL] - [URL="http://www.javascript****.com/horizontal-slider-javascript-v2-2.html"]JavaScript Horizontal Slider[/URL]

  6. #21
    Join Date
    Sep 2009
    Posts
    25

    Enlarge Image 2

    This one line script changes the [URL="http://www.javascript****.com/javascript/image/"]image[/URL] size and source on your thumbnail [URL="http://www.javascript****.com/javascript/image/"]picture[/URL] without reloading the page or using popups.... [URL="http://www.javascript****.com/enlarge-image-2.html/en//"]detail[/URL] at [URL="http://www.javascript****.com/"]JavaScript****.com - 2.000+ free JavaScript codes[/URL]

    [URL="http://www.javascript****.com/javascript/image/enlarge-image-2/preview/en/"][IMG]http://www.javascript****.com/javascript.images/image/enlarge-image-2.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/enlarge-image-2.html/en/"]JavaScript Enlarge Image 2[/URL]

    How to setup

    Step *: Copy & Paste HTML code below in your BODY section
    HTML
    Code:
    <b>Single-click the image to enlarge it; double-click to make it small again.</b><br>
    
    <img src="gif_logojsb2.gif" onclick="this.src='gif_logojsb2.gif';this.height=*80;this.width=480" ondblclick="this.src='gif_logojsb2.gif';this.height=60;this.width=*50">
    	<!--
        	This script downloaded from www.JavaScript****.com
        	Come to view and download over 2000+ free javascript at www.JavaScript****.com
    	-->





    [URL="http://www.javascript****.com/spotlight-index.html"]JavaScript Spotlight[/URL] - [URL="http://www.javascript****.com/validate-e-mail.html"]JavaScript Validate E-Mail[/URL] - [URL="http://www.javascript****.com/ajax-page-content-loader.html/en/"]AJAX Page Content Loader[/URL]

  7. #22
    Join Date
    Sep 2009
    Posts
    25

    RSS AJAX Newsticker

    This [URL="http://www.javascript****.com/thietkeweb/javascriptmall/"]JavaScript tutorial[/URL] will show you how to combine RSS, AJAX, and [URL="http://www.javascript****.com/javascript/"]JavaScript[/URL] to create a real-time RSS ticker.

    Thanks to AJAX... [URL="http://www.javascript****.com/rss-ajax-newsticker.html/en//"]detail[/URL] at [URL="http://www.javascript****.com/"]JavaScript****.com - 2.000+ free JavaScript codes[/URL]

    [URL="http://www.javascript****.com/javascript/ajax/rss-ajax-newsticker/preview/en/"][IMG]http://www.javascript****.com/javascript.images/ajax/rss-ajax-newsticker.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/rss-ajax-newsticker.html/en/"]JavaScript RSS AJAX Newsticker[/URL]

    How to setup

    Step *: Use JavaScript code below to setup the script
    JavaScript
    Code:
    <script type="text/javascript" src="rssticker.js"></script>
    Step 2: Place HTML below in your BODY section
    HTML
    Code:
    CNN:
    <DIV style="HEIGHT: *00px; border-style: dotted; border-width: *px; background-color: silver; text-align: left;">
    <script type="text/javascript">
    //rss_ticker(RSS_id, cachetime, divId, divClass, delay, optionalswitch)
    new rss_ticker("CNN", 60, "cnnbox", "cnnclass", 200)
    
    </script>
    </DIV>
    <br><br><br>
    Each ticker on the page can be invoked independently, for example:
    <DIV style="HEIGHT: *00px; border-style: dotted; border-width: *px; background-color: silver; text-align: left;">
    <PRE><script type="text/javascript">
    //rss_ticker(RSS_id, cachetime, divId, divClass, delay, optionalswitch)
    new rss_ticker("CNN", 60, "cnnbox", "cnnclass", 2000)
    </script></PRE>
    
    </DIV>
    Step *: downloads
    Files
    [URL="http://www.javascript****.com/javascript/ajax/RSS_AJAX_Newsticker/rssticker.js"]rssticker.js[/URL]






    [URL="http://www.javascript****.com/spotlight-index.html"]JavaScript Spotlight[/URL] - [URL="http://www.javascript****.com/validate-e-mail.html"]JavaScript Validate E-Mail[/URL] - [URL="http://www.javascript****.com/ajax-page-content-loader.html/en/"]AJAX Page Content Loader[/URL]

  8. #23
    Join Date
    Sep 2009
    Posts
    25

    Spotlight

    Cast an interactive 'spotlight' on the image of your choice using this DHTML script. Move the light about using your mouse. This cool effect works in IE4+, degrading well with the rest.... [URL="http://www.javascript****.com/spotlight-index.html/en//"]detail[/URL] at [URL="http://www.javascript****.com/"]JavaScript****.com - 2.000+ free JavaScript codes[/URL]

    [URL="http://www.javascript****.com/javascript/background/spotlight-index/preview/en/"][IMG]http://www.javascript****.com/javascript.images/background/spotlight.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/spotlight-index.html/en/"]JavaScript Spotlight[/URL]

    How to setup

    Step *: Use CSS code below for styling the script
    CSS
    Code:
    <style type="text/css">
    <!--
    body{
    background-image : url('none') !important; 
    }
    
    #content{
    background-color : #ffffff;
    position : absolute;
    top : 0px;
    left : 0px;
    padding : *0px;
    visibility : hidden;
    }
    
    #light{
    position : absolute;
    top : 0px;
    left : 0px;
    overflow : hidden;
    }
    //-->
    </style>
    	<!--
        	This script downloaded from www.JavaScript****.com
        	Come to view and download over 2000+ free javascript at www.JavaScript****.com
    	-->
    Step 2: Copy & Paste HTML code below in your BODY section
    HTML
    Code:
    <script type="text/javascript" src="spotlight_part_*.js"></script>
    <script type="text/javascript" src="spotlight_part_2.js"></script>
    <div style="z-index: **0;"></div>
    	<!--
        	This script downloaded from www.JavaScript****.com
        	Come to view and download over 2000+ free javascript at www.JavaScript****.com
    	-->
    Step *: Download files below
    Files
    [URL="http://javascript****.com/javascript/background/spotlight/spotlight_part_*.js"]spotlight_part_*.js[/URL]
    [URL="http://javascript****.com/javascript/background/spotlight/spotlight_part_2.js"]spotlight_part_2.js[/URL]

    [URL="http://javascript****.com/javascript/background/spotlight/spotlight.gif"]spotlight.gif[/URL]






    [URL="http://www.javascript****.com/floating-message-scroller.html"]Javascript floating message[/URL] - [URL="http://www.javascript****.com/javascript-multi-level-drop-down-menu.html"]Javascript multi level drop down menu[/URL] - [URL="http://www.javascript****.com/in-array.html"]JavaScript in_array()[/URL]

  9. #24
    Join Date
    Sep 2009
    Posts
    25

    Dancing Animation Stars Cursor

    One of the many [URL="http://www.javascript****.com/javascript/very nice mouse/"]cursor[/URL] codes in our JavaScript library, this one creates dancing stars animating around your pointers mouse. This [URL="http://www.javascript****.com/=cursor move"]cur... [URL="http://www.javascript****.com/dancing-animation-stars-cursor.html/en//"]detail[/URL] at [URL="http://www.javascript****.com/"]JavaScript****.com - 2.000+ free JavaScript codes[/URL]

    [URL="http://www.javascript****.com/javascript/mouse/trailer/dancing-animation-stars-cursor/preview/en/"][IMG]http://www.javascript****.com/javascript.images/mouse/dancing-animation-stars-cursor.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/dancing-animation-stars-cursor.html/en/"]JavaScript Dancing Animation Stars Cursor[/URL]

    How to setup

    Step *: Place JavaScript below in your HEAD section
    JavaScript
    Code:
    <script language="JavaScript">
    <!--
    /*
    Dancing Stars cursor (Submitted by Kurt at kurt.grigg@virgin.net)
    Modified and permission granted to Dynamic Drive to feature script in archive
    For full source, usage terms, and *00's more DHTML scripts, visit http://dynamicdrive.com
    */
    
    if (document.all){
    document.write('<div id="starsDiv" style="position:absolute;top:0px;left:0px">')
    for (xy=0;xy<7;xy++)
    document.write('<div style="position:relative;width:*px;height:*px;background:#FFFF00;font-size:2px;visibility:visible"></div>')
    document.write('</div>')
    }
    
    if (document.layers)
    {window.captureEvents(Event.MOUSEMOVE);}
    var yBase = 200;
    var xBase = 200;
    var yAmpl = *0;
    var yMax = 40;
    var step = .2;
    var ystep = .5;
    var currStep = 0;
    var tAmpl=*;
    var Xpos = *;
    var Ypos = *;
    var i = 0;
    var j = 0;
    
    if (document.all)
    {
      function MoveHandler(){
      Xpos = document.body.scrollLeft+event.x;
      Ypos = document.body.scrollTop+event.y;
      }
      document.onmousemove = MoveHandler; 
    }
    
    else if (document.layers)
    {
      function xMoveHandler(evnt){
      Xpos = evnt.pageX;
      Ypos = evnt.pageY;
      }
      window.onMouseMove = xMoveHandler;
    }
    
    
    
    function animateLogo() {
    if (document.all)
    {
     yBase = window.document.body.offsetHeight/4;
     xBase = window.document.body.offsetWidth/4;
    }
    else if (document.layers)
    {
     yBase = window.innerHeight/4 ;
     xBase = window.innerWidth/4;
    }
    
    if (document.all)
    {
    var totaldivs=document.all.starsDiv.all.length
     for ( i = 0 ; i < totaldivs ; i++ )
     {
    var tempdiv=document.all.starsDiv.all[i].style
      tempdiv.top = Ypos + Math.cos((20*Math.sin(currStep/20))+i*70)*yBase*(Math.sin(*0+currStep/*0)+0.2)*Math.cos((currStep + i*25)/*0);
      tempdiv.left = Xpos + Math.sin((20*Math.sin(currStep/20))+i*70)*xBase*(Math.sin(*0+currStep/*0)+0.2)*Math.cos((currStep + i*25)/*0);
     }
    }
    
    else if (document.layers)
    {
     for ( j = 0 ; j < 7 ; j++ ) 
     {
    var templayer="a"+j
      document.layers[templayer].top = Ypos + Math.cos((20*Math.sin(currStep/20))+j*70)*yBase*(Math.sin(*0+currStep/*0)+0.2)*Math.cos((currStep + j*25)/*0);
      document.layers[templayer].left =Xpos + Math.sin((20*Math.sin(currStep/20))+j*70)*xBase*(Math.sin(*0+currStep/*0)+0.2)*Math.cos((currStep + j*25)/*0);
     }
    }
    currStep += step;
    setTimeout("animateLogo()", *5);
    }
    animateLogo();
    // -->
    </script>
    Step 2: Copy & Paste HTML code below in your BODY section
    HTML
    Code:
    <LAYER NAME="a0" LEFT=*0 TOP=*0 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,*,*"></LAYER>
    <LAYER NAME="a*" LEFT=*0 TOP=*0 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,*,*"></LAYER>
    <LAYER NAME="a2" LEFT=*0 TOP=*0 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,*,*"></LAYER>
    <LAYER NAME="a*" LEFT=*0 TOP=*0 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,*,*"></LAYER>
    <LAYER NAME="a4" LEFT=*0 TOP=*0 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,*,*"></LAYER>
    <LAYER NAME="a5" LEFT=*0 TOP=*0 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,*,*"></LAYER>
    <LAYER NAME="a6" LEFT=*0 TOP=*0 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0,0,*,*"></LAYER>





    [URL="http://www.javascript****.com/web-based-music-player.html/en/"]Javascript Music Player[/URL] - [URL="http://www.javascript****.com/random-text-generator.html"]Random Text Generator[/URL] - [URL="http://www.javascript****.com/up-down-floating-image.html"]Floating Image Script[/URL]

  10. #25
    Join Date
    Sep 2009
    Posts
    25

    Random Text Generator

    When [URL="http://www.javascript****.com/"]designing web site[/URL], sometimes we need to fill areas of layout with some text, and we usually do this thing by making some [URL="http://www.javascript****.com/title=copy paste"]copy & paste[/URL] on any conte... [URL="http://www.javascript****.com/random-text-generator.html/en//"]detail[/URL] at [URL="http://www.javascript****.com/"]JavaScript****.com - 2.000+ free JavaScript codes[/URL]

    [URL="http://www.javascript****.com/javascript/utility/generator/random-text-generator/preview/en/"][IMG]http://www.javascript****.com/javascript.images/utility/random-text-generator.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/random-text-generator.html/en/"]JavaScript Random Text Generator[/URL]

    How to setup

    Step *: Use JavaScript code below to setup the script
    JavaScript
    Code:
    <script type="text/javascript">
    // Created by: Will Munslow | http://subterrane.com
    
    function objectTag() {
      var lorem = new Array();
    
      switch(document.loremForm.loremString.value) {
        case "latin": {
      				lorem[0] = "Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.";
          break;
        }
      		case "silly": {
      				lorem[0] = "Epsum factorial non deposit quid pro quo hic escorol. Olypian quarrels et gorilla congolium sic ad nauseum. Souvlaki ignitus carborundum e pluribus unum. Defacto lingo est igpay atinlay. Marquee selectus non provisio incongruous feline nolo contendre. Gratuitous octopus niacin, sodium glutimate. Quote meon an estimate et non interruptus stadium. Sic tempus fugit esperanto hiccup estrogen. Glorious baklava ex librus hup hey ad infinitum. Non sequitur condominium facile et geranium incognito. Epsum factorial non deposit quid pro quo hic escorol. Marquee selectus non provisio incongruous feline nolo contendre Olypian quarrels et gorilla congolium sic ad nauseum. Souvlaki ignitus carborundum e pluribus unum.";
       			break;
      		}
      		case "spanish": {
       			lorem[0] = "Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc., li tot Europa usa li sam vocabularium. Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilit? de un nov lingua franca: on refusa continuar payar custosi traductores. It solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles.";
       			break;
      		}
      		case "italian": {
       			lorem[0] = "Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental: in fact, it va esser Occidental. A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es."
       			break;
      		}
     	}
    
      if ("characters" == document.loremForm.type.value) {
        var outputString = '';
        var numOfChars = document.loremForm.numbers.value;
        numOfChars = parseInt( numOfChars );
        var tempString = lorem.join( "nn" );
        while (
          outputString.length < numOfChars ) outputString += tempString;
          document.loremForm.output.value = outputString.substring(0, numOfChars ); // changed
        } else if("words" == document.loremForm.type.value) {
          var numOfWords = document.loremForm.numbers.value;
          numOfWords = parseInt( numOfWords );
          var list = new Array();
          var wordList = new Array();
          wordList = lorem[0].split( ' ' );
          var iParagraphCount = 0;
          var iWordCount = 0;
    
          while( list.length < numOfWords ) {
          	 if( iWordCount > wordList.length ) {
            		iWordCount = 0;
            		iParagraphCount++;
          		  if( iParagraphCount + * > lorem.length ) iParagraphCount = 0;
            		wordList = lorem[ iParagraphCount ].split( ' ' );
            		wordList[0] = "nn" + wordList[ 0 ];
          	 }
           	list.push( wordList[ iWordCount ] );
           	iWordCount++;
          }
        document.loremForm.output.value = list.join(' '); // changed
      } else {
        var numOfParagraphs = document.loremForm.numbers.value;
        numOfParagraphs = parseInt( numOfParagraphs );
        var list = new Array();
     			var iParagraphCount = 0;
    
        while(list.length < numOfParagraphs) {
          if(iParagraphCount +* > lorem.length) {
            iParagraphCount = 0;
          }
          list.push( lorem[iParagraphCount] );
            iParagraphCount++;
        }
        document.loremForm.output.value = list.join( "nn" ); // changed
      }
    }
    
    function copypaste() {
      document.loremForm.output.focus();
      document.loremForm.output.select();
      therange=document.loremForm.output.createTextRange();
      therange.execCommand("Copy");
    }
    </script>
    Step 2: Copy & Paste HTML code below in your BODY section
    HTML
    Code:
    <form name="loremForm" action="javascript:objectTag();" id="loremForm">
    	<strong>Select language type ...</strong>
    	<select name="loremString" style="width: *00%;">
    		<option value="latin" selected="selected">Lorem ipsum dolor sit amet...</option>
    		<option value="silly">Epsum factorial non deposit quid pro quo...</option>
    		<option value="spanish">Li Europan lingues es membres del sam familie...</option>
    		<option value="italian">Ma quande lingues coalesce, li grammatica...</option>
    	</select><br />
    	
    	<strong>Select number of  </strong>
    	<select name="type">
    		<option value="characters">Characters</option>
    		<option value="words" selected="selected">Words</option>
    		<option value="paragraphs">Paragraphs</option>
    	</select>
    	<input type="text" name="numbers" value="8" size="4">
    	<input type="submit" name="btnOK" value="Generate">
    	<br />
    	<textarea rows="*0" name="output" style="width: *00%;"></textarea>
    	<br />
    	<input type="button" onclick="copypaste()" value="Select Text" name="select">
    	<input type="button" onclick=document.loremForm.reset() value="Reset form">
    </form>





    [URL="http://www.javascript****.com/spotlight-index.html"]JavaScript Spotlight[/URL] - [URL="http://www.javascript****.com/validate-e-mail.html"]JavaScript Validate E-Mail[/URL] - [URL="http://www.javascript****.com/ajax-page-content-loader.html/en/"]AJAX Page Content Loader[/URL]

  11. #26
    Join Date
    Sep 2009
    Posts
    25

    Currency Format script

    This [URL="http://www.javascript****.com/javascript/"]JavaScript[/URL] accepts a number or string and formats it like U.S. currency. Adds the dollar sign, rounds to two places past the decimal, adds place holding zeros, and comm... [URL="http://www.javascript****.com/currency-format-script.html/en//"]detail[/URL] at [URL="http://www.javascript****.com/"]JavaScript****.com - 2.000+ free JavaScript codes[/URL]

    [URL="http://www.javascript****.com/javascript/utility/converter/currency-format-script/preview/en/"][IMG]http://www.javascript****.com/javascript.images/utility/currency-format-script.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/currency-format-script.html/en/"]JavaScript Currency Format script[/URL]

    How to setup

    Step *: Place JavaScript below in your HEAD section
    JavaScript
    Code:
    <SCRIPT LANGUAGE="JavaScript">
    // Cyanide_7 (leo7278@hotmail.com) | http://www7.ewebcity.com/cyanide7
    
    <!-- Begin
    function formatCurrency(num) {
    num = num.toString().replace(/\$|\,/g,'');
    if(isNaN(num))
    num = "0";
    sign = (num == (num = Math.abs(num)));
    num = Math.floor(num**00+0.5000000000*);
    cents = num%*00;
    num = Math.floor(num/*00).toString();
    if(cents<*0)
    cents = "0" + cents;
    for (var i = 0; i < Math.floor((num.length-(*+i))/*); i++)
    num = num.substring(0,num.length-(4*i+*))+','+
    num.substring(num.length-(4*i+*));
    return (((sign)?'':'-') + '$' + num + '.' + cents);
    }
    //  End -->
    </script>
    	<!--
        	This script downloaded from www.JavaScript****.com
        	Come to view and download over 2000+ free javascript at www.JavaScript****.com
    	-->
    Step 2: Place HTML below in your BODY section
    HTML
    Code:
    <form name=currencyform>
    Enter a number then click the button: <input type=text name=input size=*0 value="*0004*4.2*">
    <input type=button value="Convert" onclick="this.form.input.value=formatCurrency(this.form.input.value);">
    <br><br>
    or enter a number and click another field: <input type=text name=input2 size=*0 value="*0004*4.2*" onBlur="this.value=formatCurrency(this.value);">
    </form>
    	<!--
        	This script downloaded from www.JavaScript****.com
        	Come to view and download over 2000+ free javascript at www.JavaScript****.com
    	-->





    [URL="http://www.javascript****.com/enlarge-image-2.html/en/"]JavaScript Enlarge Image[/URL] - [URL="http://www.javascript****.com/fading-slide-show.html"]JavaScript Fading Slide Show[/URL] - [URL="http://www.javascript****.com/rotating-image-script.html"]JavaScript Rotating Image script[/URL]

  12. #27
    Join Date
    Sep 2009
    Posts
    25

    World Clock script

    By using your computer's clock, you can calculate the time in other time zones all over the world! Currently, the script works for eight of the major time zones. But, just change one entry (or just ad... [URL="http://www.javascript****.com/world-clock-script.html/en//"]detail[/URL] at [URL="http://www.javascript****.com/"]JavaScript****.com - 2.000+ free JavaScript codes[/URL]

    [URL="http://www.javascript****.com/javascript/time/clock-time-date/world-clock-script/preview/en/"][IMG]http://www.javascript****.com/javascript.images/time/world-clock-script.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/world-clock-script.html/en/"]JavaScript World Clock script[/URL]

    How to setup

    Step *: Use JavaScript code below to setup the script
    JavaScript
    Code:
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Original:  Emanuel Gavrilv (eltal@sprint.ca) -->
    
    <!-- Begin
    function GetTime() { 
    var dt = new Date();
    var def = dt.getTimezoneOffset()/60;
    var gmt = (dt.getHours() + def);
    document.clock.local.value = (IfZero(dt.getHours()) + ":" + IfZero(dt.getMinutes()) + ":" + IfZero(dt.getSeconds()));
    var ending = ":" + IfZero(dt.getMinutes()) + ":" +  IfZero(dt.getSeconds());
    var rome =check24(((gmt + *) > 24) ? ((gmt + *) - 24) : (gmt + *));
    document.clock.rome.value = (IfZero(rome) + ending);
    var isr =check24(((gmt + 2) > 24) ? ((gmt + 2) - 24) : (gmt + 2));
    document.clock.Israel.value = (IfZero(isr) + ending);
    var msw =check24(((gmt + *) > 24) ? ((gmt + *) - 24) : (gmt + *));
    document.clock.msw.value = (IfZero(msw) + ending);
    var baku =check24(((gmt + 4) > 24) ? ((gmt + 4) - 24) : (gmt + 4));
    document.clock.baku.value = (IfZero(baku) + ending);
    var del =check24(((gmt + 5) > 24) ? ((gmt + 5) - 24) : (gmt + 5));
    document.clock.del.value = (IfZero(del) + ending);
    var dh =check24(((gmt + 6) > 24) ? ((gmt + 6) - 24) : (gmt + 6));
    document.clock.dh.value = (IfZero(dh) + ending);
    var kok =check24(((gmt +7 ) > 24) ? ((gmt +7 ) - 24) : (gmt + 7));
    document.clock.kok.value = (IfZero(kok) + ending);
    var ho =check24(((gmt + 8) > 24) ? ((gmt + 8) - 24) : (gmt + 8));
    document.clock.ho.value = (IfZero(ho) + ending);
    var tky =check24(((gmt + *) > 24) ? ((gmt + *) - 24) : (gmt + *));
    document.clock.tky.value = (IfZero(tky) + ending);
    var sdn =check24(((gmt + *0) > 24) ? ((gmt + *0) - 24) : (gmt + *0));
    document.clock.sdn.value = (IfZero(sdn) + ending);
    var mag =check24(((gmt + **) > 24) ? ((gmt + **) - 24) : (gmt + **));
    document.clock.mag.value = (IfZero(mag) + ending);
    var wll =check24(((gmt + *2) > 24) ? ((gmt + *2) - 24) : (gmt + *2));
    document.clock.wll.value = (IfZero(wll) + ending);
    
    var _GMT =check24(((gmt) > 24) ? ((gmt) - 24) : (gmt));
    
    document.clock._GMT.value = (IfZero(_GMT) + ":" + IfZero(dt.getMinutes()) + ":" + IfZero(dt.getSeconds()));
    var eniw =check24(((gmt + (24-*2)) > 24) ? ((gmt + (24-*2)) - 24) : (gmt + (24-*2)));
    document.clock.eniw.value = (IfZero(eniw) + ending);
    var sam =check24(((gmt + (24-**)) > 24) ? ((gmt + (24-**)) - 24) : (gmt + (24-**)));
    document.clock.sam.value = (IfZero(sam) + ending);
    var haw =check24(((gmt + (24-*0)) > 24) ? ((gmt + (24-*0)) - 24) : (gmt + (24-*0)));
    document.clock.Hawaii.value = (IfZero(haw) + ending);
    var ala =check24(((gmt + (24-*)) > 24) ? ((gmt + (24-*)) - 24) : (gmt + (24-*)));
    document.clock.alaska.value = (IfZero(ala) + ending);
    var pacif =check24(((gmt + (24-8)) >= 24) ? ((gmt + (24-8)) - 24) : (gmt + (24-8)));
    document.clock.pacif.value = (IfZero(pacif) + ending);
    var mount =check24(((gmt + (24-7)) > 24) ? ((gmt + (24-7)) - 24) : (gmt + (24-7)));
    document.clock.mount.value = (IfZero(mount) + ending);
    var center =check24(((gmt + (24-6)) > 24) ? ((gmt + (24-6)) - 24) : (gmt + (24-6)));
    document.clock.center.value = (IfZero(center) + ending);
    var east =check24(((gmt + (24-5)) > 24) ? ((gmt + (24-5)) - 24) : (gmt + (24-5)));
    document.clock.east.value = (IfZero(east) + ending);
    var atl =check24(((gmt + (24-4)) > 24) ? ((gmt + (24-4)) - 24) : (gmt + (24-4)));
    document.clock.atl.value = (IfZero(atl) + ending);
    var bra =check24(((gmt + (24-*)) > 24) ? ((gmt + (24-*)) - 24) : (gmt + (24-*)));
    bra = (bra >= 24) ? bra - 24 : bra;
    document.clock.bra.value = (IfZero(bra) + ending);
    var mid =check24(((gmt + (24-2)) > 24) ? ((gmt + (24-2)) - 24) : (gmt + (24-2)));
    mid = (mid >= 24) ? mid - 24 : mid;
    document.clock.mid.value = (IfZero(mid) + ending);
    var azo =check24(((gmt + (24-*)) > 24) ? ((gmt + (24-*)) - 24) : (gmt + (24-*)));
    azo = (azo >= 24) ? azo - 24 : azo;
    document.clock.azo.value = (IfZero(azo) + ending);
    setTimeout("GetTime()", *000);
    }
    function IfZero(num) {
    return ((num <= *) ? ("0" + num) : num);
    }
    function check24(hour) {
    return (hour >= 24) ? hour - 24 : hour;
    }
    //  End -->
    </script>
    	<!--
        	This script downloaded from www.JavaScript****.com
        	Come to view and download over 2000+ free javascript at www.JavaScript****.com
    	-->
    Step 2: Copy & Paste HTML code below in your BODY section
    HTML
    Code:
    <BODY onLoad="javascript:GetTime();">
    <form name="clock">
    <strong>Local Time <input type="text" size="8" name="local"></strong>
    <p>
    Eniwetok (GMT-*2)  <input type="text" size="8" name="eniw"><br>
    Samoa (GMT-**)  <input type="text" size="8" name="sam"><br>
    Hawaii (GMT-*0)  <input type="text" size="8" name="Hawaii">
    <p>
    Alaska (GMT-*)  <input type="text" size="8" name="alaska"><br>
    Pacific Time (GMT-8)  <input type="text" size="8" name="pacif"><br>
    Mountain Time (GMT-7)  <input type="text" size="8" name="mount">
    
    <p>
    Central Time (GMT-6)  <input type="text" size="8" name="center"><br>
    Eastern Time (GMT-5)  <input type="text" size="8" name="east"><br>
    Atlantic Time (GMT-4)  <input type="text" size="8" name="atl">
    <p>
    Brazilia (GMT-*)  <input type="text" size="8" name="bra"><br>
    Mid-Atlantic (GMT-2)  <input type="text" size="8" name="mid"><br>
    Azores (GMT-*)  <input type="text" size="8" name="azo">
    <p>
    <strong>Greenwich Mean Time (GMT)  <input type="text" size="8" name="_GMT"></strong>
    
    <p>
    Rome (GMT +*)  <input type="text" size="8" name="rome"><br>
    Israel (GMT +2)  <input type="text" size="8" name="Israel"><br>
    Moscow (GMT +*)  <input type="text" size="8" name="msw">
    <p>
    Baku (GMT +4)  <input type="text" size="8" name="baku"><br>
    New Delhi (GMT +5)  <input type="text" size="8" name="del"><br>
    Dhakar (GMT +6)  <input type="text" size="8" name="dh">
    <p>
    Bangkok (GMT +7)  <input type="text" size="8" name="kok"><br>
    
    Hong Kong (GMT +8)  <input type="text" size="8" name="ho"><br>
    Tokyo (GMT +*)  <input type="text" size="8" name="tky">
    <p>
    Sydney (GMT +*0)  <input type="text" size="8" name="sdn"><br>
    Magadan (GMT +**)  <input type="text" size="8" name="mag"><br>
    Wellington (GMT +*2)  <input type="text" size="8" name="wll">
    </form>
    </body>
    	<!--
        	This script downloaded from www.JavaScript****.com
        	Come to view and download over 2000+ free javascript at www.JavaScript****.com
    	-->





    [URL="http://www.javascript****.com/javascript-countdown-timer.html/en/"]JavaScript Countdown Timer[/URL] - [URL="http://www.javascript****.com/currency-format-script.html"]JavaScript Currency Format[/URL] - [URL="http://www.javascript****.com/format-phone-number.html"]JavaScript Format Phone Number[/URL]

  13. #28
    Join Date
    Feb 2010
    Posts
    2
    for cool web pages
    Source(s):
    [url]www.javascriptfreecode.com[/url]
    [url]www.javascript-2.com/[/url]
    ___________________________________________________________________
    Last edited by gordo; 02-15-2010 at 07:22 AM.

+ Reply to Thread

Similar Threads

  1. Javascript countdown timer code free...
    By JackieBolinsky in forum Internet Privacy
    Replies: 0
    Last Post: 02-23-2012, 01:45 AM
  2. What program can i use to write a javascript code in?
    By Ronavar32 in forum Programming
    Replies: 4
    Last Post: 01-08-2010, 10:28 PM
  3. downloads
    By Unregistered in forum Proxies and Firewalls
    Replies: 3
    Last Post: 03-17-2003, 03:10 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts