munin
+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 15 of 28

Thread: Free JavaScript Code Downloads

  1. #1
    Join Date
    Sep 2009
    Posts
    25

    Free JavaScript Code Downloads

    Alert Box Protection

    Often when working on scripts alert boxes are placed inside loops as a deb***ing tool. You can sometimes end up with hundreds of alert boxes and no way to stop them. This [URL="http://www.javascript****.com/javascript/"]JavaSc... [URL="http://www.javascript****.com/alert-box-protection.html/en//"]detail[/URL]

    [URL="http://www.javascript****.com/alert-box-protection.html/en/"][IMG]http://www.javascript****.com/javascript.images/misc/alert-box-protection.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/javascript/misc/alert-box-protection/preview/en/"]Alert Box Protection[/URL]

    How to setup

    Step *: Copy & Paste JavaScript code below in your HEAD section
    JavaScript
    Code:
    <script type=text/javascript>
    //Created by: Benjamin Joffe :: http://www.abrahamjoffe.com.au/ */
    
    (function(){
      var a=window.alert, c=0;
      window.alert=function(q){
        // Change the number below to the number of alert boxes to display before the warning is given.
        if (++c%5==0) {
          if (!confirm(q+'\nThere have been '+c+' alert boxes, continue displaying them?')) window.alert=function(){};
        } else a(q);
      }
    })();
    
    // This is only a test case. You can removed it.
    function testing() {
    	for (var i=*; i<50; i++) {
    	  alert('This is an annoying loop of 50 alerts.\nEvery 5th alert you will have an option to exit.\n\n'+i);
    	}
    }
    
    
    </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:
    <input type="submit" value="Press to test" onclick="testing();">
    	<!--
        	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/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]

  2. #2
    Join Date
    Sep 2009
    Posts
    25

    Advansed Coolest On mouse Over

    It is use microsoft filters and work only IE4/5.... [URL="http://www.javascript****.com/advansed-coolest-onmouseover.html/en//"]detail[/URL]

    [URL="http://www.javascript****.com/advansed-coolest-onmouseover.html/en/"][IMG]http://www.javascript****.com/javascript.images/image/advansed-coolest-onmouseover.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/javascript/image/advansed-coolest-onmouseover/preview/en/"]Advansed Coolest On mouse Over[/URL]

    How to setup

    Step *: Place JavaScript below in your HEAD section
    JavaScript
    Code:
    <script>
    var globopObject;
    var opIndex=0;
    var cleared=true;
    var direction=*0;
    
    function dynOpacity(opObject,stop)
    {
    if (stop) 
    {
    clearInterval(window.tm);
    cleared=true;
    opIndex=*0;
    return;
    }
    globopObject=opObject;
    if (opIndex>**0) direction=-4;
    if (opIndex<0) direction=4;
    opIndex+=direction;
    globopObject.style.filter='alpha(opacity:' + opIndex + ')';
    if (cleared)
    {
    window.tm=setInterval("dynOpacity(globopObject,false);",*);
    cleared=false;
    }
    //alert(window.tm);
    
    }
    
    function handleevent()
    {
    
    if (event.type=="mouseover")
       if(event.srcElement.tagName=="IMG") 
       	   if (event.srcElement.parentElement.tagName=="A")	
       		{
    		dynOpacity(event.srcElement,false);
    		}
    if (event.type=="mouseout")
       if(event.srcElement.tagName=="IMG") 
       		{
    		event.srcElement.style.filter="";
    		dynOpacity(event.srcElement,true);	
    		}
    }
    document.onmouseover=handleevent;
    document.onmouseout=handleevent;
    
    </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:
    <a href="http://javascript****.com/"><img src="logojs.gif" width="*40" height="60" border="0"></a><br>
    
    <a href="http://javascript****.com/"><img src="logojs.gif" width="*40" height="60" border="0"></a><br>
    <a href="http://javascript****.com/"><img src="logojs.gif" width="*40" height="60" border="0"></a>
    	<!--
        	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/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. #3
    Join Date
    Sep 2009
    Posts
    25

    JavaScript Countdown Timer

    This [URL="http://www.javascript****.com/javascript/"]JavaScript[/URL] displays a [URL="http://www.javascript****.com/javascript/time/clock-time-date/"]countdown timer[/URL] and alerts the user when the timer reaches zero. It then redirects to another Web ... [URL="http://www.javascript****.com/javascript-countdown-timer.html/en//"]detail[/URL]

    [URL="http://www.javascript****.com/javascript-countdown-timer.html/en/"][IMG]http://www.javascript****.com/javascript.images/time/countdown-timer.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/javascript/time/counter/javascript-countdown-timer/preview/en/"]JavaScript Countdown Timer[/URL]

    How to setup

    Step *: Copy & Paste CSS code below in your HEAD section
    CSS
    Code:
    <style type="text/css">
    #txt {
      border:none;
      font-family:verdana;
      font-size:*6pt;
      font-weight:bold;
      border-right-color:#FFFFFF
    }
    
    </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 JavaScript code below in your HEAD section
    JavaScript
    Code:
    <script language="javascript">
    // Created by: Neill Broderick :: http://www.bespoke-software-solutions.co.uk/downloads/downjs.php
    
    var mins
    var secs;
    
    function cd() {
     	mins = * * m("*0"); // change minutes here
     	secs = 0 + s(":0*"); // change seconds here (always add an additional second to your total)
     	redo();
    }
    
    function m(obj) {
     	for(var i = 0; i < obj.length; i++) {
      		if(obj.substring(i, i + *) == ":")
      		break;
     	}
     	return(obj.substring(0, i));
    }
    
    function s(obj) {
     	for(var i = 0; i < obj.length; i++) {
      		if(obj.substring(i, i + *) == ":")
      		break;
     	}
     	return(obj.substring(i + *, obj.length));
    }
    
    function dis(mins,secs) {
     	var disp;
     	if(mins <= *) {
      		disp = " 0";
     	} else {
      		disp = " ";
     	}
     	disp += mins + ":";
     	if(secs <= *) {
      		disp += "0" + secs;
     	} else {
      		disp += secs;
     	}
     	return(disp);
    }
    
    function redo() {
     	secs--;
     	if(secs == -*) {
      		secs = 5*;
      		mins--;
     	}
     	document.cd.disp.value = dis(mins,secs); // setup additional displays here.
     	if((mins == 0) && (secs == 0)) {
      		window.alert("Time is up. Press OK to continue."); // change timeout message as required
      		// window.location = "yourpage.htm" // redirects to specified page once timer ends and ok button is pressed
     	} else {
     		cd = setTimeout("redo()",*000);
     	}
    }
    
    function init() {
      cd();
    }
    window.onload = init;
    </script>
    	<!--
        	This script downloaded from www.JavaScript****.com
        	Come to view and download over 2000+ free javascript at www.JavaScript****.com
    	-->
    Step *: Copy & Paste HTML code below in your BODY section
    HTML
    Code:
    <form name="cd">
    <input id="txt" readonly="true" type="text" value="*0:00" border="0" name="disp">
    </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/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]

  4. #4
    Join Date
    Sep 2009
    Posts
    25

    Image slideshow transition

    This [URL="http://www.javascript****.com/javascript/"]JavaScript[/URL] creates slideshow effect with one of transitions.... [URL="http://www.javascript****.com/image-slideshow-transition.html/en//"]detail[/URL]

    [URL="http://www.javascript****.com/javascript/image/slideshow/image-slideshow-transition/preview/en/"][IMG]http://www.javascript****.com/javascript.images/image/image-slideshow-transition.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/image-slideshow-transition.html/en/"]Image slideshow transition[/URL]

    How to setup

    Step *: Copy & Paste JavaScript code below in your HEAD section
    JavaScript
    Code:
    <script LANGUAGE="JavaScript*.*">
    <!-- Beginning of JavaScript -
    
    messages = new Array()
    //anh dung de tao hieu ung
    messages[0] = "<img src=logojs.gif>"
    messages[*] = "<img src=photo*.jpg>"
    messages[2] = "<img src=photo2.jpg>"
    messages[*] = "<img src=photo*.jpg>"
    messages[4] = "<img src=photo4.jpg>"
    
    var i_messages = 0
    var timer
    
    function dotransition() {
        if (document.all) {
            content.filters[0].apply()
            content.innerHTML = messages[i_messages]
            content.filters[0].play()
            if (i_messages >= messages.length-*) {
                i_messages = 0
            }
            else {
                i_messages++
            }
        } 
        
        if (document.layers) {
           document.nn.document.write("<table cellspacing=2 cellpadding=2 border=0><tr><td align=left>"+messages[i_messages]+"</td></tr></table>")
    		document.close()
            if (i_messages >= messages.length-*) {
                i_messages = 0
            }
            else {
                i_messages++
            }
        } 
        timer = setTimeout("dotransition()",5000)   
    }
    // - 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 2: Place HTML below in your BODY section
    HTML
    Code:
    <BODY onload="dotransition()">
    <DIV id=content style="position: relative; width:*60px; height:240px; text-align:center; filter: revealTrans(Transition=*2, Duration=*)"></DIV>
    </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/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]

  5. #5
    Join Date
    Sep 2009
    Posts
    25

    Web based Music Player

    Bring the sound of life - music to your visitors by this JavaScript. It is an advanced web based midi player that actually enables you to jump, pause, and manipulate the play list like never before.... [URL="http://www.javascript****.com/web-based-music-player.html/en//"]detail[/URL]

    [URL="http://www.javascript****.com/javascript/multimedia/sound/web-based-music-player/preview/en/"][IMG]http://www.javascript****.com/javascript.images/multimedia/web-based-music-player.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/web-based-music-player.html/en/"]Web based Music Player[/URL]

    How to setup

    Step *: Use JavaScript code below to setup the script
    JavaScript
    Code:
    <SCRIPT language=JavaScript>
    <!-- Begin
    counter = 0;
    html = true;
    songs = new Array();
    function addsong() {
    file = document.forms[0].file.value;
    if(file == "") {
    alert("Entra un nombre de archivo o da click en Examinar..");
    }
    else {
    fn = file;
    while(fn.indexOf() != -*) {
    pos = fn.indexOf();
    fn = fn.substring(fn.lenght);
    }
    if(fn.indexOf(".gif") == *) {
    alert("Sólo sonidos o música");
    }
    else {
    songs[counter] = file;
    document.forms[0].selMusica[counter] = new Option(fn, file, false, true);
    counter++;
    }
    document.forms[0].file.value = "";
    }
    }
    function musica() {
    document.all.sound.src=document.clock.selMusica.options[document.clock.selMusica.selectedIndex].text;
    }
    function stop() {
    document.all.sound.src="";
    }
    function count() {
    document.clock.songs.value=document.clock.selMusica.options.length;
    }
    function deletethis() {
    if(counter > 0) {
    counter--;
    document.forms[0].selMusica[counter] = null;
    songs[counter] = "";
    }
    else {
    alert("No hay nada en la lista!");
       }
    }
    function bajar() {
    document.clock.selMusica.options[document.clock.selMusica.selectedIndex++];
    saber2();
    saber();
    }
    function subir() {
    document.clock.selMusica.options[document.clock.selMusica.selectedIndex--];
    saber2();
    saber();
    }
    function saber() {
    document.clock.url.value=document.clock.selMusica.options[document.clock.selMusica.selectedIndex].text;
    }
    function saber2() {
    fn = document.clock.selMusica.options[document.clock.selMusica.selectedIndex].text;
    char = unescape("%5C");
    while(fn.indexOf(char) != -*) {
    pos = fn.indexOf(char);
    fn = fn.substring(pos + *, fn.length);
    document.clock.nombre.value=fn;
    }
    }
    // End-->
    </SCRIPT>
    Step 2: Place HTML below in your BODY section
    HTML
    Code:
    <BODY onclick=count() onload=count()>
    <BGSOUND id=sound src="">
    <FORM name=clock><INPUT type=file name=file size="20"> <INPUT onclick=addsong() type=button value=Add><INPUT onclick=deletethis() type=button value=Delete><BR><INPUT onclick=musica() type=button value=Listen name=empezar> 
    <INPUT onclick=stop() type=button value=Stop name=detener> You have:<INPUT 
    readOnly size=2 name=songs>song(s) in the list.<BR>Name of the song:<INPUT 
    size=25 name=nombre><INPUT onclick="saber2(); saber()" type=button value="Know Name & Url">Url 
    	of the song:<INPUT size=** name=url> <BR><INPUT onclick=bajar() type=button value=MoveDown><INPUT onclick=subir() type=button value=MoveUp><BR><BR><SELECT 
    multiple size=20 name=selMusica></SELECT> </FORM>
    </BODY>





    [URL="http://www.javascript****.com/rss-ajax-newsticker.html"]AJAX news ticker[/URL] - [URL="http://www.javascript****.com/re*****-page-automatic.html/en/"]JavaScript Re***** Page[/URL] - [URL="http://www.javascript****.com/blink.html"]JavaScript Unclosable Window[/URL]

  6. #6
    Join Date
    Sep 2009
    Posts
    25

    Make link open in new tab/window

    Use this [URL="http://www.javascript****.com/javascript/"]simple JavaScript[/URL] to make all [URL="http://www.javascript****.com/javascript/link/"]links[/URL] on your web pages open in new tab/window. Script is easy to setup, you should save them into a f... [URL="http://www.javascript****.com/make-link-open-in-new-tab-window.html/en//"]detail[/URL]

    [URL="http://www.javascript****.com/javascript/link/make-link-open-in-new-tab-window/preview/en/"][IMG]http://www.javascript****.com/javascript.images/link/make-link-open-in-new-tab-window.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/make-link-open-in-new-tab-window.html/en/"]Make link open in new tab/window[/URL]

    How to setup

    Step *: Copy & Paste JavaScript code below in your HEAD section
    JavaScript
    Code:
    <script language=javascript>
    /*
    	Kevin Yank
    	http://www.sitepoint.com/authorcontact/48
    */
    function externalLinks()
    {
      if (!document.getElementsByTagName) return;
      var anchors = document.getElementsByTagName("a");
      for (var i=0; i<anchors.length; i++)
      {
          var anchor = anchors[i];
          if(anchor.getAttribute("href"))
    		anchor.target = "_blank";
      }
    }
    window.onload = externalLinks;
    
    </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:
    <a href="http://javascript****.com/">Home</a> | 
    	<a href="http://javascript****.com/4rum/">Forum</a> | 
    	<a href="http://javascript****.com/javascript/">JavaScript</a> | 
    	<a href="http://javascript****.com/service/">Services</a> | 
    	<a href="http://javascript****.com/javascript/submit-javascript-****.html">Submit script</a> | 
    	<a href="http://javascript****.com/thietkeweb/javascriptmall/">Documentary</a> | 
    	<a href="http://javascript****.com/javascript/contact-javascript-****.html">Contact us</a> | 
    	<a href="http://javascript****.com/javascript/aboutus-javascript-****.html">About us</a>
    	<!--
        	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/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]

  7. #7
    Join Date
    Sep 2009
    Posts
    25

    AJAX Page Content Loader

    AJAX - a very great web development technology nowaday. Use this [URL="http://www.javascript****.com/javascript/ajax/"]AJAX[/URL] in order to load XML and HTML files on the same website with XMLHttpRequest. And in the <code>body... [URL="http://www.javascript****.com/ajax-page-content-loader.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/ajax-page-content-loader/preview/en/"][IMG]http://www.javascript****.com/javascript.images/ajax/ajax-page-content-loader.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/ajax-page-content-loader.html/en/"]AJAX Page Content Loader[/URL]

    How to setup

    Step *: Use CSS code below for styling the script
    CSS
    Code:
    <style type="text/css">
    <!--
    #contentLYR {
      position:relative;/*
      width:200px;
      height:**5px;
      left: 200px;
      top: 200px;*/
      z-index:*;
    }
    -->
    </style>
    Step 2: Place JavaScript below in your HEAD section
    JavaScript
    Code:
    <script type="text/javascript">
    <!-- Begin
    /*
         This script downloaded from www.JavaScript****.com
         Come to view and download over 2000+ free javascript at www.JavaScript****.com
    */
    
    // Created by: Eddie Traversa (2005) :: http://dhtmlnirvana.com/
    function ajaxLoader(url,id) {
      if (document.getElementById) {
        var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
      }
      if (x) {
        x.onreadystatechange = function() {
          if (x.readyState == 4 && x.status == 200) {
            el = document.getElementById(id);
            el.innerHTML = '<JavaScript****>This is content of demo.xml file</JavaScript****>';//x.responseText;
          }
        }
        x.open("GET", url, true);
        x.send(null);
      }
    }
    //-->
    </script>
    Step *: Copy & Paste HTML code below in your BODY section
    HTML
    Code:
    <div id="contentLYR"></div>
    	<script>window.onload = function(){ajaxLoader('demo.xml','contentLYR');}</script>
    Step 4: Download files below
    Files
    [URL="http://www.javascript****.com/javascript/ajax/AJAX_Page_Content_Loader/demo.xml"]demo.xml[/URL]






    [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]

  8. #8
    Join Date
    Sep 2009
    Posts
    25

    Top *0 JavaScript Frameworks by Google, Yahoo, Bing

    JavaScript - an indispensable part for developing websites and web pages, whether that is simple pages or professional website, and whether you are senior or junior. Nowadays, JavaScript frameworks be... [URL="http://www.javascript****.com/top-*0-javascript-frameworks-by-google--yahoo--bing.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/top-*0-javascript-frameworks-by-google--yahoo--bing/preview/en/"][IMG]http://www.javascript****.com/javascript.images/article/top-*0-javascript-frameworks-by-google--yahoo--bing.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/top-*0-javascript-frameworks-by-google--yahoo--bing.html/en/"]Top *0 JavaScript Frameworks by Google, Yahoo, Bing[/URL]

    How to setup






    [URL="http://www.javascript****.com/rss-ajax-newsticker.html"]AJAX news ticker[/URL] - [URL="http://www.javascript****.com/re*****-page-automatic.html/en/"]JavaScript Re***** Page[/URL] - [URL="http://www.javascript****.com/blink.html"]JavaScript Unclosable Window[/URL]

  9. #9
    Join Date
    Sep 2009
    Posts
    25

    Time Picker with child window

    This JavaScript code - [URL="http://www.javascript****.com/=date picker"]date picker[/URL] helps you choose a time through a [URL="http://www.javascript****.com/javascript/browser/popup/"]popup window[/URL]. Perhaps this feature is not new on [URL="http://www.javascript****.com/"]J... [URL="http://www.javascript****.com/time-picker-with-child-window.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/time-picker-with-child-window/preview/en/"][IMG]http://www.javascript****.com/javascript.images/time/time-picker-with-child-window.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/time-picker-with-child-window.html/en/"]Time Picker with child window[/URL]

    How to setup

    Step *: Use JavaScript code below to setup the script
    JavaScript
    Code:
    <script language="JavaScript" type="text/javascript" src="timePicker.js">
    /*
    	Bassem R. Zohdy | bassem.zohdy@**********
    */
    </script>
    Step 2: Place HTML below in your BODY section
    HTML
    Code:
    <form name="form*">
    	<input id="field" onkeydown="time(this.id)"/>
    </form>
    Step *: must download files below
    Files
    [URL="http://www.javascript****.com/javascript/time/Time_Picker_with_child_window/down.jpg"]down.jpg[/URL]
    [URL="http://www.javascript****.com/javascript/time/Time_Picker_with_child_window/time.html"]time.html[/URL]
    [URL="http://www.javascript****.com/javascript/time/Time_Picker_with_child_window/timePicker.js"]timePicker.js[/URL]
    [URL="http://www.javascript****.com/javascript/time/Time_Picker_with_child_window/up.jpg"]up.jpg[/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]

  10. #10
    Join Date
    Sep 2009
    Posts
    25

    Fading Slide Show

    Displays images continuously in a slideshow presentation format, with a fade effect on [URL="http://www.javascript****.com/javascript/image/"]image[/URL] transitions. (Fade in Internet Explorer 4+ only).... [URL="http://www.javascript****.com/fading-slide-show.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/slideshow/fading-slide-show/preview/en/"][IMG]http://www.javascript****.com/javascript.images/image/fading-slide-show.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/fading-slide-show.html/en/"]Fading Slide Show[/URL]

    How to setup

    Step *: Copy & Paste JavaScript code below in your HEAD section
    JavaScript
    Code:
    <script>
    /* 
    	Original:  CodeLifter.com (support@codelifter.com)
    	Web Site:  http://www.codelifter.com 
    */
    
    // set the following variables
    // Set slideShowSpeed (milliseconds)
    var slideShowSpeed = 5000
    
    // Duration of crossfade (seconds)
    var crossFadeDuration = *
    
    // Specify the image files
    var Pic = new Array() // don't touch this
    // to add more images, just continue
    // the pattern, adding to the array below
    Pic[0] = 'logojs.gif'
    Pic[*] = 'photo*.jpg'
    Pic[2] = 'logojs.gif'
    Pic[*] = 'photo5.jpg'
    Pic[4] = 'photo2.jpg'
    
    // do not edit anything below this line
    
    var t
    var j = 0
    var p = Pic.length
    var preLoad = new Array()
    for (i = 0; i < p; i++){
       preLoad[i] = new Image()
       preLoad[i].src = Pic[i]
    }
    
    function runSlideShow(){
       if (document.all){
          document.images.SlideShow.style.filter="blendTrans(duration=2)"
          document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
          document.images.SlideShow.filters.blendTrans.Apply()      
       }
       document.images.SlideShow.src = preLoad[j].src
       if (document.all){
          document.images.SlideShow.filters.blendTrans.Play()
       }
       j = j + *
       if (j > (p-*)) j=0
       t = setTimeout('runSlideShow()', slideShowSpeed)
    }
    </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="runSlideShow()">
    <img id="VU" src="logojs.gif" name='SlideShow'>
    </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/window-print-method.html"]Command to print web page in javascript[/URL] - [URL="http://www.javascript****.com/time-picker-with-child-window.html"]Javascript Time Picker[/URL] - [URL="http://www.javascript****.com/go-to-url.html"]JavaScript Go To URL Box[/URL]

  11. #11
    Join Date
    Nov 2009
    Posts
    1

    Free JavaScript Code Downloads

    i want to get ads content from a file ads.php or ads.html, but its must be with javascript


    can you give simple JAVASCRIPT code that i can use in vb template to load above files content?
    [url=http://www.autoinsuranceclaim.us/]Accident claim[/url]

  12. #12
    Join Date
    Sep 2009
    Posts
    25

    Virtual Key***rd

    This [URL="http://www.javascript****.com/javascript/"]JavaScript[/URL] integrates complete virtual key***rd solution to the any web page. It does support mouse input, as well as key***rd input translation. Plain text and rich te... [URL="http://www.javascript****.com/virtualkey***rd-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/utility/virtualkey***rd-index/preview/en/"][IMG]http://www.javascript****.com/javascript.images/utility/virtualkey***rd-index.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/virtualkey***rd-index.html/en/"]Virtual Key***rd[/URL]

    How to setup

    Step *: Place JavaScript below in your HEAD section
    JavaScript
    Code:
    <script type="text/javascript" src="vk_loader.js" ></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 action="no.cgi" method="get">
          <div>
           Subject:<br />
    
           <input name="testa" id="testa" type="text" onfocus="VirtualKey***rd.attachInput(this)" /><br />
           Password (has key***rd animation disabled):<br />
           <input name="test_pwd" id="test_pwd" type="password" class="VK_no_animate" onfocus="VirtualKey***rd.attachInput(this)" /><br />
           Text:<br />
           <textarea name="testb" id="testb" type="text" cols="55" rows="*0" wrap="soft" onfocus="VirtualKey***rd.attachInput(this)"></textarea>
           <br />
           <br />
    
           <div id="td"></div>
           <br />
           <input id="showkb" type="button" value="Key***rd" onclick="VirtualKey***rd.toggle('testb','td'); return false;" />
          </div>
          <div id="dbg">
          </div>
         </form>
         <script type="text/javascript">
             EM.addEventListener(window,'domload',function(){
                 /*
                 *  open the key***rd
                 */
                 VirtualKey***rd.toggle('testb','td');
                 var el = document.getElementById('sul')
                    ,lt = VirtualKey***rd.getLayouts()
                    ,dl = window.location.href.replace(/[?#].+/,"")
                 for (var i=0,lL=lt.length; i<lL; i++) {
                     var cl = lt[i];
                     cl = cl[0]+" "+cl[*];
                     lt[i] = "<a href=\""+dl+"?vk_layout="+cl+"\" onclick=\"VirtualKey***rd.switchLayout(this.title);return false;\" title=\""+cl+"\" alt=\""+cl+"\" >"+cl+"</a>"
                 }
                 el.innerHTML += "<li>"+lt.join("</li><li>")+"</li>";
             });
         </script>
    	<!--
        	This script downloaded from www.JavaScript****.com
        	Come to view and download over 2000+ free javascript at www.JavaScript****.com
    	-->
    Step *: must download files below
    Files
    [URL="http://javascript****.com/javascript/utility/VirtualKey***rd/Virtual_Key***rd.zip"]Virtual_Key***rd.zip[/URL]






    [URL="http://www.javascript****.com/window-print-method.html"]Command to print web page in javascript[/URL] - [URL="http://www.javascript****.com/time-picker-with-child-window.html"]Javascript Time Picker[/URL] - [URL="http://www.javascript****.com/go-to-url.html"]JavaScript Go To URL Box[/URL]

  13. #13
    Join Date
    Sep 2009
    Posts
    25

    Re***** Page - Automatic

    Keep your content *****. Use this [URL="http://www.javascript****.com/javascript/"]JavaScript[/URL] to automatically reload a ***** copy of your Web page from the server. You determine the [URL="http://www.javascript****.com/javascript/time/"]time[/URL] de... [URL="http://www.javascript****.com/re*****-page-automatic.html/en//"]detail[/URL] at [URL="http://www.javascript****.com/"]JavaScript****.com - 2.000+ free JavaScript codes[/URL]

    [URL="http://www.javascript****.com/javascript/browser/window/re*****-page-automatic/preview/en/"][IMG]http://www.javascript****.com/javascript.images/browser/re*****-page-automatic.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/re*****-page-automatic.html/en/"]Re***** Page - Automatic[/URL]

    How to setup

    Step *: Use JavaScript code below to setup the script
    JavaScript
    Code:
    <script type="text/javascript">
    <!-- Begin
    // Created by: Lee Underwood
    function re*****() {
      window.open(location.reload(true))
    }
    /* Set the number below to the amount of delay, in milliseconds,
    you want between page reloads: * minute = 60000 milliseconds. */
    window.setInterval("re*****()",*00000);
    // End -->
    </script>
    	<!--
        	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]

  14. #14
    Join Date
    Sep 2009
    Posts
    25

    Validate E-Mail

    This [URL="http://www.javascript****.com/javascript/"]JavaScript[/URL] verifies that a string looks like a real [URL="http://www.javascript****.com/javascript/email/"]e-mail[/URL] address.... [URL="http://www.javascript****.com/validate-e-mail.html/en//"]detail[/URL] at [URL="http://www.javascript****.com/"]JavaScript****.com - 2.000+ free JavaScript codes[/URL]

    [URL="http://www.javascript****.com/javascript/email/validate-e-mail/preview/en/"][IMG]http://www.javascript****.com/javascript.images/email/validate-e-mail.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/validate-e-mail.html/en/"]JavaScript Validate E-Mail[/URL]

    How to setup

    Step *: Place JavaScript below in your HEAD section
    JavaScript
    Code:
    <script language="javascript">
    // Created by: Francis Cocharrua :: http://scripts.franciscocharrua.com/
    
    function Validate_String(string, return_invalid_chars) {
      valid_chars = '*2*45678*0-_.^~abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
      invalid_chars = '';
      if(string == null || string == '')
         return(true);
    
      //For every character on the string.   
      for(index = 0; index < string.length; index++) {
        char = string.substr(index, *);                        
         
        //Is it a valid character?
        if(valid_chars.indexOf(char) == -*) {
          //If not, is it already on the list of invalid characters?
          if(invalid_chars.indexOf(char) == -*) {
            //If it's not, add it.
            if(invalid_chars == '')
              invalid_chars += char;
            else
              invalid_chars += ', ' + char;
          }
        }
      }
                
      //If the string does not contain invalid characters, the function will return true.
      //If it does, it will either return false or a list of the invalid characters used
      //in the string, depending on the value of the second parameter.
      if(return_invalid_chars == true && invalid_chars != '') {
        last_comma = invalid_chars.lastIndexOf(',');
        if(last_comma != -*)
          invalid_chars = invalid_chars.substr(0, $last_comma) + 
          ' and ' + invalid_chars.substr(last_comma + *, invalid_chars.length);
        return(invalid_chars);
        }
      else
        return(invalid_chars == ''); 
    }
    
    
    function Validate_Email_Address(email_address){
      // Modified and tested by Thai Cao Phong, JavaScript****.com
      //Assumes that valid email addresses consist of user_name@domain.tld
      
      at = email_address.indexOf('@');
      dot = email_address.indexOf('.');
    
      if(at == -* || 
        dot == -* || 
        dot <= at + * ||
        dot == 0 || 
        dot == email_address.length - *)
      {
      	alert("Invalid email");
        return(false);
      }
         
      user_name = email_address.substr(0, at);
      domain_name = email_address.substr(at + *, email_address.length);                  
    
      if(Validate_String(user_name) === false || Validate_String(domain_name) === false)
      {
      	alert("Invalid email");
        return(false);
      }
    
      alert("Valid email");//return(true);
    }
    </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=f>
    <input type=text name=mail value="">
    <input type=button value=Check onclick="Validate_Email_Address(document.f.mail.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/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]

  15. #15
    Join Date
    Sep 2009
    Posts
    25

    Top *0 Beautiful Christmas Countdown Timers

    Only a fews of days then Christmas will come. And if you are looking for one beautiful countdown timer for waiting <i>Christmas Day</i> on your website, then I hope this post will satisfy your needs; ... [URL="http://www.javascript****.com/top-*0-beautiful-christmas-countdown-timers.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/top-*0-beautiful-christmas-countdown-timers/preview/en/"][IMG]http://www.javascript****.com/javascript.images/article/top-*0-beautiful-christmas-countdown-timers.jpg[/IMG][/URL]
    Demo: [URL="http://www.javascript****.com/top-*0-beautiful-christmas-countdown-timers.html/en/"]JavaScript Top *0 Beautiful Christmas Countdown Timers[/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]

+ 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