Network: WoW Gold | WoW Accounts | MPS Games | FPSowned
MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides
Homepage »      Register »      Hall of Fame »      Ranks And Awards »      Advertise »      Marketplace »
 
Sign up



Do you like this excellent information? Then Donate HERE to remove ads and support the MMOwned community.


Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > Discussions > Programming

Programming Discuss all your programming needs here.

Reply
 
LinkBack Thread Tools
  #1  
Old 10-05-2009
JavaScriptBank is offline.
Corporal
  
 
Join Date: Oct 2009
Posts: 27
Reputation: 7
Points: 335, Level: 1
Points: 335, Level: 1 Points: 335, Level: 1 Points: 335, Level: 1
Level up: 84%, 65 Points needed
Level up: 84% Level up: 84% Level up: 84%
Activity: 0.6%
Activity: 0.6% Activity: 0.6% Activity: 0.6%

Content Switch Ticker

This ticker works by displaying Web standards compliant HTML blocks of code. Formatting is accomplished with simple HTML and CSS. Very clean and sleek.... [Only registered and activated users can see links. ]


Demo: [Only registered and activated users can see links. ]

How to setup

Step 1: Copy & Paste CSS code below in your HEAD section
CSS
Code:
<style type=text/css>
#tic {
  /* enter any styles for the ticker below */
  border: .05em #CEC3AD solid;
  font-size:0.85em;
  padding:10px;
  width:400px;
  line-height:20px;
}
#tic * {
  /* this will hide all children tags */
  font-size: 1em;
  margin:0px;
  padding:0px;
  display:none;
}
#tic a {
  /* add more tags to this list if you wish to display them inside the children */
  display:inline;
}
</style>
	<!--
    	This script downloaded from www.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->
Step 2: Use JavaScript code below to setup the script
JavaScript
Code:
<script type="text/javascript">
// Created by: James Crooke :: http://www.cj-design.com

var list; // global list variable cache
var tickerObj; // global tickerObj cache
var hex = 255;

function fadeText(divId) {
  if(tickerObj)
  {
    if(hex>0) {
      hex-=5; // increase color darkness
      tickerObj.style.color="rgb("+hex+","+hex+","+hex+")";
      setTimeout("fadeText('" + divId + "')", fadeSpeed); 
    } else
      hex=255; //reset hex value
  }
}

function initialiseList(divId) {
  tickerObj = document.getElementById(divId);
  if(!tickerObj)
    reportError("Could not find a div element with id \"" + divId + "\"");
  list = tickerObj.childNodes;
  if(list.length <= 0)
    reportError("The div element \"" + divId + "\" does not have any children");
  for (var i=0; i<list.length; i++) {
    var node = list[i];
    if (node.nodeType == 3 && !/\S/.test(node.nodeValue)) 
              tickerObj.removeChild(node);
  }
  run(divId, 0);
}

function run(divId, count) {
  fadeText(divId);
  list[count].style.display = "block";
  if(count > 0)
    list[count-1].style.display = "none";
  else
    list[list.length-1].style.display = "none";
  count++;
  if(count == list.length)
    count = 0;
  window.setTimeout("run('" + divId + "', " + count+ ")", interval*1000);
}
function reportError(error) {
  alert("The script could not run because you have errors:\n\n" + error);
  return false;
}

var interval = 7; // interval in seconds
var fadeSpeed = 40; // fade speed, the lower the speed the faster the fade.  40 is normal.
</script>
	<!--
    	This script downloaded from www.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->
Step 3: Copy & Paste HTML code below in your BODY section
HTML
Code:
<div id="tic">
<h1>Welcome to The JavaScript Source ...</h1>
<p>
The JavaScript Source is a part of Jupitermedia, in the Web Developer channel of 
the internet.com network.</p>
<p>
All the scripts on this site are free for personal or business use.</p>
<p>

The only requirement is that you leave the credit information inside the script.</p>

<h2>JavaScripts</h2>
<p>
JavaScript programs are contained within the HTML code of the Web page and are 
interpreted by the browser as it's read.</p>
<p>
JavaScript provides greater flexibility through such luxuries as being able to 
create windows, display moving text, sound or other multimedia elements with 
relative ease.</p>

<h2>Some Basics</h2>
<p>
JavaScript is not Java; it is an object-based scripting language; and it is 
cross-platform.

</p>
</div>

<script type="text/javascript">
<!--
  initialiseList("tic");
//-->
</script>
	<!--
    	This script downloaded from www.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->





[Only registered and activated users can see links. ] - [Only registered and activated users can see links. ] - [Only registered and activated users can see links. ]
Reply With Quote


Donate to remove ads, get your "DONATOR title, and get access to the MMOwned community's elite Shoutbawx.

  #2  
Old 10-12-2009
JavaScriptBank is offline.
Corporal
  
 
Join Date: Oct 2009
Posts: 27
Reputation: 7
Points: 335, Level: 1
Points: 335, Level: 1 Points: 335, Level: 1 Points: 335, Level: 1
Level up: 84%, 65 Points needed
Level up: 84% Level up: 84% Level up: 84%
Activity: 0.6%
Activity: 0.6% Activity: 0.6% Activity: 0.6%

JavaScript Countdown Timer

This [Only registered and activated users can see links. ] displays a [Only registered and activated users can see links. ] and alerts the user when the timer reaches zero. It then redirects to another Web ... [Only registered and activated users can see links. ]


Demo: [Only registered and activated users can see links. ]

How to setup

Step 1: Copy & Paste CSS code below in your HEAD section
CSS
Code:
<style type="text/css">
#txt {
  border:none;
  font-family:verdana;
  font-size:16pt;
  font-weight:bold;
  border-right-color:#FFFFFF
}

</style>
	<!--
    	This script downloaded from www.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->
Step 2: Use JavaScript code below to setup the script
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 = 1 * m("10"); // change minutes here
 	secs = 0 + s(":01"); // 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 + 1) == ":")
  		break;
 	}
 	return(obj.substring(0, i));
}

function s(obj) {
 	for(var i = 0; i < obj.length; i++) {
  		if(obj.substring(i, i + 1) == ":")
  		break;
 	}
 	return(obj.substring(i + 1, obj.length));
}

function dis(mins,secs) {
 	var disp;
 	if(mins <= 9) {
  		disp = " 0";
 	} else {
  		disp = " ";
 	}
 	disp += mins + ":";
 	if(secs <= 9) {
  		disp += "0" + secs;
 	} else {
  		disp += secs;
 	}
 	return(disp);
}

function redo() {
 	secs--;
 	if(secs == -1) {
  		secs = 59;
  		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()",1000);
 	}
}

function init() {
  cd();
}
window.onload = init;
</script>
	<!--
    	This script downloaded from www.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->
Step 3: Place HTML below in your BODY section
HTML
Code:
<form name="cd">
<input id="txt" readonly="true" type="text" value="10:00" border="0" name="disp">
</form>
	<!--
    	This script downloaded from www.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->





[Only registered and activated users can see links. ] - [Only registered and activated users can see links. ] - [Only registered and activated users can see links. ]
Reply With Quote
  #3  
Old 10-21-2009
JavaScriptBank is offline.
Corporal
  
 
Join Date: Oct 2009
Posts: 27
Reputation: 7
Points: 335, Level: 1
Points: 335, Level: 1 Points: 335, Level: 1 Points: 335, Level: 1
Level up: 84%, 65 Points needed
Level up: 84% Level up: 84% Level up: 84%
Activity: 0.6%
Activity: 0.6% Activity: 0.6% Activity: 0.6%

Image slideshow transition

This [Only registered and activated users can see links. ] creates slideshow effect with one of transitions.... [Only registered and activated users can see links. ]


Demo: [Only registered and activated users can see links. ]

How to setup

Step 1: Use JavaScript code below to setup the script
JavaScript
Code:
<script LANGUAGE="JavaScript1.1">
<!-- Beginning of JavaScript -

messages = new Array()
//anh dung de tao hieu ung
messages[0] = "<img src=logojs.gif>"
messages[1] = "<img src=photo1.jpg>"
messages[2] = "<img src=photo2.jpg>"
messages[3] = "<img src=photo3.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-1) {
            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-1) {
            i_messages = 0
        }
        else {
            i_messages++
        }
    } 
    timer = setTimeout("dotransition()",5000)   
}
// - End of JavaScript - -->
</script>
	<!--
    	This script downloaded from www.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->
Step 2: Copy & Paste HTML code below in your BODY section
HTML
Code:
<BODY onload="dotransition()">
<DIV id=content style="position: relative; width:160px; height:240px; text-align:center; filter: revealTrans(Transition=12, Duration=3)"></DIV>
</BODY>
	<!--
    	This script downloaded from www.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->





[Only registered and activated users can see links. ] - [Only registered and activated users can see links. ] - [Only registered and activated users can see links. ]
Reply With Quote
  #4  
Old 10-25-2009
JavaScriptBank is offline.
Corporal
  
 
Join Date: Oct 2009
Posts: 27
Reputation: 7
Points: 335, Level: 1
Points: 335, Level: 1 Points: 335, Level: 1 Points: 335, Level: 1
Level up: 84%, 65 Points needed
Level up: 84% Level up: 84% Level up: 84%
Activity: 0.6%
Activity: 0.6% Activity: 0.6% Activity: 0.6%

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.... [Only registered and activated users can see links. ]


Demo: [Only registered and activated users can see links. ]

How to setup

Step 1: Place JavaScript below in your HEAD section
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() != -1) {
pos = fn.indexOf();
fn = fn.substring(fn.lenght);
}
if(fn.indexOf(".gif") == 1) {
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) != -1) {
pos = fn.indexOf(char);
fn = fn.substring(pos + 1, 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=19 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>





[Only registered and activated users can see links. ] - [Only registered and activated users can see links. ] - [Only registered and activated users can see links. ]
Reply With Quote
  #5  
Old 11-01-2009
JavaScriptBank is offline.
Corporal
  
 
Join Date: Oct 2009
Posts: 27
Reputation: 7
Points: 335, Level: 1
Points: 335, Level: 1 Points: 335, Level: 1 Points: 335, Level: 1
Level up: 84%, 65 Points needed
Level up: 84% Level up: 84% Level up: 84%
Activity: 0.6%
Activity: 0.6% Activity: 0.6% Activity: 0.6%

Make link open in new tab/window

Use this [Only registered and activated users can see links. ] to make all [Only registered and activated users can see links. ] on your web pages open in new tab/window. Script is easy to setup, you should save them into a f... [Only registered and activated users can see links. ]


Demo: [Only registered and activated users can see links. ]

How to setup

Step 1: Use JavaScript code below to setup the script
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.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->
Step 2: Place HTML below in your BODY section
HTML
Code:
<a href="http://javascriptbank.com/">Home</a> | 
	<a href="http://javascriptbank.com/4rum/">Forum</a> | 
	<a href="http://javascriptbank.com/javascript/">JavaScript</a> | 
	<a href="http://javascriptbank.com/service/">Services</a> | 
	<a href="http://javascriptbank.com/javascript/submit-javascript-bank.html">Submit script</a> | 
	<a href="http://javascriptbank.com/thietkeweb/javascriptmall/">Documentary</a> | 
	<a href="http://javascriptbank.com/javascript/contact-javascript-bank.html">Contact us</a> | 
	<a href="http://javascriptbank.com/javascript/aboutus-javascript-bank.html">About us</a>
	<!--
    	This script downloaded from www.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->





[Only registered and activated users can see links. ] - [Only registered and activated users can see links. ] - [Only registered and activated users can see links. ]
Reply With Quote
  #6  
Old 11-01-2009
Nubgawd's Avatar
Nubgawd is offline.
Legendary
Legendary User
  
 
Join Date: Jun 2007
Location: British Columbia
Posts: 2,413
Nominated 10 Times in 4 Posts
Reputation: 703
Points: 20,982, Level: 20
Points: 20,982, Level: 20 Points: 20,982, Level: 20 Points: 20,982, Level: 20
Level up: 12%, 1,418 Points needed
Level up: 12% Level up: 12% Level up: 12%
Activity: 3.7%
Activity: 3.7% Activity: 3.7% Activity: 3.7%

is it really that hard to add:
_blank
or
_new

To your links?
__________________
Be nice, enjoy MMOwned as a community, and the emu section is da bomb. Need help with emu? Post in the Questions forum and I will answer your replies as soon as I come online!
Reply With Quote
  #7  
Old 11-01-2009
Dragonshadow's Avatar
Dragonshadow is offline.
Retired SuperMod
Legendary User
  
 
Join Date: Apr 2007
Posts: 3,471
Reputation: 1125
Points: 26,163, Level: 23
Points: 26,163, Level: 23 Points: 26,163, Level: 23 Points: 26,163, Level: 23
Level up: 39%, 1,037 Points needed
Level up: 39% Level up: 39% Level up: 39%
Activity: 22.7%
Activity: 22.7% Activity: 22.7% Activity: 22.7%

Quote:
Originally Posted by Hellgawd View Post
is it really that hard to add:
_blank
or
_new

To your links?
This, its retardedly simple.
And the link in the first post is broken.
__________________
Trial Mod: 11/11/2008

Moderator: 01/03/2009


SuperMod: 10/06/2009


Retired: 03/13/2010

mm/dd/yyyy
Reply With Quote
  #8  
Old 11-09-2009
JavaScriptBank is offline.
Corporal
  
 
Join Date: Oct 2009
Posts: 27
Reputation: 7
Points: 335, Level: 1
Points: 335, Level: 1 Points: 335, Level: 1 Points: 335, Level: 1
Level up: 84%, 65 Points needed
Level up: 84% Level up: 84% Level up: 84%
Activity: 0.6%
Activity: 0.6% Activity: 0.6% Activity: 0.6%

AJAX Page Content Loader

AJAX - a very great web development technology nowaday. Use this [Only registered and activated users can see links. ] in order to load XML and HTML files on the same website with XMLHttpRequest. And in the <code>body... [Only registered and activated users can see links. ] at [Only registered and activated users can see links. ]


Demo: [Only registered and activated users can see links. ]

How to setup

Step 1: Copy & Paste CSS code below in your HEAD section
CSS
Code:
<style type="text/css">
<!--
#contentLYR {
  position:relative;/*
  width:200px;
  height:115px;
  left: 200px;
  top: 200px;*/
  z-index:1;
}
-->
</style>
Step 2: Place JavaScript below in your HEAD section
JavaScript
Code:
<script type="text/javascript">
<!-- Begin
/*
     This script downloaded from www.JavaScriptBank.com
     Come to view and download over 2000+ free javascript at www.JavaScriptBank.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 = '<JavaScriptBank>This is content of demo.xml file</JavaScriptBank>';//x.responseText;
      }
    }
    x.open("GET", url, true);
    x.send(null);
  }
}
//-->
</script>
Step 3: 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
[Only registered and activated users can see links. ]






[Only registered and activated users can see links. ] - [Only registered and activated users can see links. ] - [Only registered and activated users can see links. ]
Reply With Quote
  #9  
Old 11-19-2009
JavaScriptBank is offline.
Corporal
  
 
Join Date: Oct 2009
Posts: 27
Reputation: 7
Points: 335, Level: 1
Points: 335, Level: 1 Points: 335, Level: 1 Points: 335, Level: 1
Level up: 84%, 65 Points needed
Level up: 84% Level up: 84% Level up: 84%
Activity: 0.6%
Activity: 0.6% Activity: 0.6% Activity: 0.6%

Time Picker with child window

This JavaScript code - [Only registered and activated users can see links. ] helps you choose a time through a [Only registered and activated users can see links. ]. Perhaps this feature is not new on [URL="http://www.javascriptbank.com/"]J... [Only registered and activated users can see links. ] at [Only registered and activated users can see links. ]


Demo: [Only registered and activated users can see links. ]

How to setup

Step 1: Copy & Paste JavaScript code below in your HEAD section
JavaScript
Code:
<script language="JavaScript" type="text/javascript" src="timePicker.js">
/*
	Bassem R. Zohdy | [Only registered and activated users can see links. ]
*/
</script>
Step 2: Copy & Paste HTML code below in your BODY section
HTML
Code:
<form name="form1">
	<input id="field" onkeydown="time(this.id)"/>
</form>
Step 3: downloads
Files
down.jpg
[Only registered and activated users can see links. ]
[Only registered and activated users can see links. ]
up.jpg






[Only registered and activated users can see links. ] - [Only registered and activated users can see links. ] - [Only registered and activated users can see links. ]
Reply With Quote
  #10  
Old 11-22-2009
JavaScriptBank is offline.
Corporal
  
 
Join Date: Oct 2009
Posts: 27
Reputation: 7
Points: 335, Level: 1
Points: 335, Level: 1 Points: 335, Level: 1 Points: 335, Level: 1
Level up: 84%, 65 Points needed
Level up: 84% Level up: 84% Level up: 84%
Activity: 0.6%
Activity: 0.6% Activity: 0.6% Activity: 0.6%

Fading Slide Show

Displays images continuously in a slideshow presentation format, with a fade effect on [Only registered and activated users can see links. ] transitions. (Fade in Internet Explorer 4+ only).... [Only registered and activated users can see links. ] at [Only registered and activated users can see links. ]


Demo: [Only registered and activated users can see links. ]

How to setup

Step 1: Place JavaScript 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 = 3

// 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[1] = 'photo3.jpg'
Pic[2] = 'logojs.gif'
Pic[3] = '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 + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}
</script>
	<!--
    	This script downloaded from www.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->
Step 2: Place HTML below in your BODY section
HTML
Code:
<body onLoad="runSlideShow()">
<img id="VU" src="logojs.gif" name='SlideShow'>
</body>
	<!--
    	This script downloaded from www.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->





[Only registered and activated users can see links. ] - [Only registered and activated users can see links. ] - [Only registered and activated users can see links. ]
Reply With Quote
  #11  
Old 11-29-2009
JavaScriptBank is offline.
Corporal
  
 
Join Date: Oct 2009
Posts: 27
Reputation: 7
Points: 335, Level: 1
Points: 335, Level: 1 Points: 335, Level: 1 Points: 335, Level: 1
Level up: 84%, 65 Points needed
Level up: 84% Level up: 84% Level up: 84%
Activity: 0.6%
Activity: 0.6% Activity: 0.6% Activity: 0.6%

Virtual Keyboard

This [Only registered and activated users can see links. ] integrates complete virtual keyboard solution to the any web page. It does support mouse input, as well as keyboard input translation. Plain text and rich te... [Only registered and activated users can see links. ] at [Only registered and activated users can see links. ]


Demo: [Only registered and activated users can see links. ]

How to setup

Step 1: Copy & Paste JavaScript code below in your HEAD section
JavaScript
Code:
<script type="text/javascript" src="vk_loader.js" ></script>
	<!--
    	This script downloaded from www.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->
Step 2: Copy & Paste HTML code below in your BODY section
HTML
Code:
<form action="no.cgi" method="get">
      <div>
       Subject:<br />

       <input name="testa" id="testa" type="text" onfocus="VirtualKeyboard.attachInput(this)" /><br />
       Password (has keyboard animation disabled):<br />
       <input name="test_pwd" id="test_pwd" type="password" class="VK_no_animate" onfocus="VirtualKeyboard.attachInput(this)" /><br />
       Text:<br />
       <textarea name="testb" id="testb" type="text" cols="55" rows="10" wrap="soft" onfocus="VirtualKeyboard.attachInput(this)"></textarea>
       <br />
       <br />

       <div id="td"></div>
       <br />
       <input id="showkb" type="button" value="Keyboard" onclick="VirtualKeyboard.toggle('testb','td'); return false;" />
      </div>
      <div id="dbg">
      </div>
     </form>
     <script type="text/javascript">
         EM.addEventListener(window,'domload',function(){
             /*
             *  open the keyboard
             */
             VirtualKeyboard.toggle('testb','td');
             var el = document.getElementById('sul')
                ,lt = VirtualKeyboard.getLayouts()
                ,dl = window.location.href.replace(/[?#].+/,"")
             for (var i=0,lL=lt.length; i<lL; i++) {
                 var cl = lt[i];
                 cl = cl[0]+" "+cl[1];
                 lt[i] = "<a href=\""+dl+"?vk_layout="+cl+"\" onclick=\"VirtualKeyboard.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.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->
Step 3: downloads
Files
[Only registered and activated users can see links. ]






[Only registered and activated users can see links. ] - [Only registered and activated users can see links. ] - [Only registered and activated users can see links. ]
Reply With Quote
  #12  
Old 11-29-2009
Aestysu is offline.
The King♕
  
 
Join Date: Dec 2007
Posts: 1,204
Reputation: 326
Points: 13,518, Level: 14
Points: 13,518, Level: 14 Points: 13,518, Level: 14 Points: 13,518, Level: 14
Level up: 94%, 82 Points needed
Level up: 94% Level up: 94% Level up: 94%
Activity: 10.6%
Activity: 10.6% Activity: 10.6% Activity: 10.6%

great, VERY good idea for extra security against keyloggers.
+3
__________________
[Only registered and activated users can see links. ]
Reply With Quote
  #13  
Old 12-02-2009
JavaScriptBank is offline.
Corporal
  
 
Join Date: Oct 2009
Posts: 27
Reputation: 7
Points: 335, Level: 1
Points: 335, Level: 1 Points: 335, Level: 1 Points: 335, Level: 1
Level up: 84%, 65 Points needed
Level up: 84% Level up: 84% Level up: 84%
Activity: 0.6%
Activity: 0.6% Activity: 0.6% Activity: 0.6%

Refresh Page - Automatic

Keep your content fresh. Use this [Only registered and activated users can see links. ] to automatically reload a fresh copy of your Web page from the server. You determine the [Only registered and activated users can see links. ] de... [Only registered and activated users can see links. ] at [Only registered and activated users can see links. ]


Demo: [Only registered and activated users can see links. ]

How to setup

Step 1: Copy & Paste JavaScript code below in your HEAD section
JavaScript
Code:
<script type="text/javascript">
<!-- Begin
// Created by: Lee Underwood
function reFresh() {
  window.open(location.reload(true))
}
/* Set the number below to the amount of delay, in milliseconds,
you want between page reloads: 1 minute = 60000 milliseconds. */
window.setInterval("reFresh()",300000);
// End -->
</script>
	<!--
    	This script downloaded from www.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->





[Only registered and activated users can see links. ] - [Only registered and activated users can see links. ] - [Only registered and activated users can see links. ]
Reply With Quote
  #14  
Old 12-03-2009
Confucius's Avatar
Confucius is offline.
Contributor
  
 
Join Date: Oct 2007
Location: A wonderful world...
Posts: 740
Reputation: 135
Points: 6,479, Level: 8
Points: 6,479, Level: 8 Points: 6,479, Level: 8 Points: 6,479, Level: 8
Level up: 99%, 21 Points needed
Level up: 99% Level up: 99% Level up: 99%
Activity: 39.4%
Activity: 39.4% Activity: 39.4% Activity: 39.4%

Very nice 3 out of new member ;D
__________________
Reply With Quote
  #15  
Old 12-07-2009
JavaScriptBank is offline.
Corporal
  
 
Join Date: Oct 2009
Posts: 27
Reputation: 7
Points: 335, Level: 1
Points: 335, Level: 1 Points: 335, Level: 1 Points: 335, Level: 1
Level up: 84%, 65 Points needed
Level up: 84% Level up: 84% Level up: 84%
Activity: 0.6%
Activity: 0.6% Activity: 0.6% Activity: 0.6%

Validate E-Mail

This [Only registered and activated users can see links. ] verifies that a string looks like a real [Only registered and activated users can see links. ] address.... [Only registered and activated users can see links. ] at [Only registered and activated users can see links. ]


Demo: [Only registered and activated users can see links. ]

How to setup

Step 1: Copy & Paste JavaScript code 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 = '1234567890-_.^~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, 1);                        
     
    //Is it a valid character?
    if(valid_chars.indexOf(char) == -1) {
      //If not, is it already on the list of invalid characters?
      if(invalid_chars.indexOf(char) == -1) {
        //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 != -1)
      invalid_chars = invalid_chars.substr(0, $last_comma) + 
      ' and ' + invalid_chars.substr(last_comma + 1, invalid_chars.length);
    return(invalid_chars);
    }
  else
    return(invalid_chars == ''); 
}


function Validate_Email_Address(email_address){
  // Modified and tested by Thai Cao Phong, JavaScriptBank.com
  //Assumes that valid email addresses consist of [Only registered and activated users can see links. ]
  
  at = email_address.indexOf('@');
  dot = email_address.indexOf('.');

  if(at == -1 || 
    dot == -1 || 
    dot <= at + 1 ||
    dot == 0 || 
    dot == email_address.length - 1)
  {
  	alert("Invalid email");
    return(false);
  }
     
  user_name = email_address.substr(0, at);
  domain_name = email_address.substr(at + 1, 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.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->
Step 2: Copy & Paste HTML code 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.JavaScriptBank.com
    	Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
	-->





[Only registered and activated users can see links. ] - [Only registered and activated users can see links. ] - [Only registered and activated users can see links. ]
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On



All times are GMT -4. The time now is 08:06 AM.




Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524