Webmaster Forum > Web Programming > JavaScript Forum >

Free JavaScript Code library


Reply
 
Share Thread Thread Tools
Old 07-28-2010, 02:18 AM   #81
JavaScriptBank

Major Member
 
Join Date: Jul 2009
Location: HCM
Age: 25
Posts: 90
Reputation: JavaScriptBank is on a distinguished road
iTrader: (0)
Default jsDatePick - A Simple Free Javascript Date Picker

jsDatePick is a free JavaScript application that uses DOM techniques to create the date pickers on your web page. Within minutes, you can have a cool popup date pic... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup






JavaScriptBank is offline   Reply With Quote
Old 07-28-2010, 02:52 AM   #82
JavaScriptBank

Major Member
 
Join Date: Jul 2009
Location: HCM
Age: 25
Posts: 90
Reputation: JavaScriptBank is on a distinguished road
iTrader: (0)
Default Highlight your PHP and JavaScript codes with PHP highlight_string

Highlighting the source code of your applications on the web pages is an interesting job to any programmer/coder, for showing the simpler look out to all audiences. And this feature has also been supp... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup






JavaScriptBank is offline   Reply With Quote
Old 07-31-2010, 03:01 AM   #83
JavaScriptBank

Major Member
 
Join Date: Jul 2009
Location: HCM
Age: 25
Posts: 90
Reputation: JavaScriptBank is on a distinguished road
iTrader: (0)
Default Five Tricks for Improving JavaScript Security

This JavaScript tutorial gives you 5 helpful guides to improve the JavaScript security troubles for JavaScript applications, web ... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup






JavaScriptBank is offline   Reply With Quote
Old 08-04-2010, 10:15 AM   #84
JavaScriptBank

Major Member
 
Join Date: Jul 2009
Location: HCM
Age: 25
Posts: 90
Reputation: JavaScriptBank is on a distinguished road
iTrader: (0)
Default Super Cool and Great Button Resources and Tutorials with CSS3

CSS3 - a higher CSS standard for designing HTML layout on web applications - is gradually being used widely. CSS3 is gradually affirming the position and benefit to CSS2... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup






JavaScriptBank is offline   Reply With Quote
Old 08-09-2010, 01:25 AM   #85
JavaScriptBank

Major Member
 
Join Date: Jul 2009
Location: HCM
Age: 25
Posts: 90
Reputation: JavaScriptBank is on a distinguished road
iTrader: (0)
Default 10 Small Javascript Tricks You Should Master

In this JavaScript tutorial article, the author provides ten small JavaScript tips and tricks, mainly aimed for beginner and intermediate Javascript developers; also... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup






JavaScriptBank is offline   Reply With Quote
Old 08-13-2010, 01:31 AM   #86
JavaScriptBank

Major Member
 
Join Date: Jul 2009
Location: HCM
Age: 25
Posts: 90
Reputation: JavaScriptBank is on a distinguished road
iTrader: (0)
Default Best Ways to Preload Image JavaScript with CSS, AJAX

Surfing time - is the loading time in other hand - is the big problem to all websites, site owners. And now, it's one of important factor to Google for ranking our URLs. For the big sites have a lot o... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup






JavaScriptBank is offline   Reply With Quote
Old 08-13-2010, 02:26 AM   #87
JavaScriptBank

Major Member
 
Join Date: Jul 2009
Location: HCM
Age: 25
Posts: 90
Reputation: JavaScriptBank is on a distinguished road
iTrader: (0)
Default Using JavaScript to Change Your Web Page Font Size

In this short JavaScript tutorial, <i>Nurani</i> guides you how to use JavaScript in changing the web page's font size. Maybe the JavaScripts to change font size are not new things on ... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup

Step 1: Place JavaScript below in your HEAD section
JavaScript
Code:
<script type="text/javascript">
var min=8;
var max=18;
function zoominLetter() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=max) {
         s += 1;
      }
      p[i].style.fontSize = s+"px"
   }
}
function zoomoutLetter() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=min) {
         s -= 1;
      }
      p[i].style.fontSize = s+"px"
   }
}
</script>
Step 2: Place HTML below in your BODY section
HTML
Code:
<a href="javascript:zoominLetter();">A</a>
<a href="javascript:zoomoutLetter();">a</a>





JavaScriptBank is offline   Reply With Quote
Old 08-14-2010, 05:22 PM   #88
JavaScriptBank

Major Member
 
Join Date: Jul 2009
Location: HCM
Age: 25
Posts: 90
Reputation: JavaScriptBank is on a distinguished road
iTrader: (0)
Default 10 Tiptop Analog and Digital Clock Resources and Techniques with Javascript

With beautiful and amazing analog or digital clock on the web pages, you're able to attract more visitors to your website if it relates to some date/time. In Flash, the web developers and web designer... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup






JavaScriptBank is offline   Reply With Quote
Old 08-17-2010, 01:28 AM   #89
JavaScriptBank

Major Member
 
Join Date: Jul 2009
Location: HCM
Age: 25
Posts: 90
Reputation: JavaScriptBank is on a distinguished road
iTrader: (0)
Default Helpful JavaScript Time and Date Picker, Plugins for Frameworks

Do you need a beautiful JavaScript time/date picker for your web blog? Just spend a little of time to view these JavaScript time and date pickers in action, maybe you wi... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup






JavaScriptBank is offline   Reply With Quote
Old 08-17-2010, 02:01 AM   #90
JavaScriptBank

Major Member
 
Join Date: Jul 2009
Location: HCM
Age: 25
Posts: 90
Reputation: JavaScriptBank is on a distinguished road
iTrader: (0)
Default Incredible and Amazing 3D JavaScript Canvas Enginges

Did you ever imagine the JavaScript programming language could render fantastic, incredible out of 3D effects, animations? Let check out these JavaScript codes presented in this free JavaScript articl... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup






JavaScriptBank is offline   Reply With Quote
Old 08-21-2010, 01:52 AM   #91
JavaScriptBank

Major Member
 
Join Date: Jul 2009
Location: HCM
Age: 25
Posts: 90
Reputation: JavaScriptBank is on a distinguished road
iTrader: (0)
Default Super Amazing jQuery Dynamic Navigation Menu Solutions

In the world of jQuery framework, there are many design miracles made by web developers, web designers that attract the web audiences. One of these jQuery d... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup






JavaScriptBank is offline   Reply With Quote
Old 08-21-2010, 02:30 AM   #92
JavaScriptBank

Major Member
 
Join Date: Jul 2009
Location: HCM
Age: 25
Posts: 90
Reputation: JavaScriptBank is on a distinguished road
iTrader: (0)
Default JavaScript Try and Catch Statement in Advance

Through this free JavaScript article tutorial, <i>Louis</i> gives you a detailed viewpoint about <code>Try</code> and <code>Catch</code> statement in the JavaScript wen programming language; by specif... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup






JavaScriptBank is offline   Reply With Quote
Old 08-26-2010, 12:22 AM   #93
JavaScriptBank

Major Member
 
Join Date: Jul 2009
Location: HCM
Age: 25
Posts: 90
Reputation: JavaScriptBank is on a distinguished road
iTrader: (0)
Default Great Powered Resources for 7 Helpful jQuery Plug-ins

This free JavaScript article provides a list of over 20 great resources for jQuery add-ons, such as: jQuery AJAX plugin, Paralax, jQuery UI plugin, jQuery plugin form, jQuery Background tricks, jQuery... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup






JavaScriptBank is offline   Reply With Quote
Old 08-28-2010, 12:34 AM   #94
JavaScriptBank

Major Member
 
Join Date: Jul 2009
Location: HCM
Age: 25
Posts: 90
Reputation: JavaScriptBank is on a distinguished road
iTrader: (0)
Default Top 10 Free Web Chat box Plug-ins and Add-ons

If you want to make your website more interactive and attract thousands of visitors on a regular basis, then adding an online chat box to the website is perhaps one ... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup






JavaScriptBank is offline   Reply With Quote
Old Today, 12:35 AM   #95
JavaScriptBank

Major Member
 
Join Date: Jul 2009
Location: HCM
Age: 25
Posts: 90
Reputation: JavaScriptBank is on a distinguished road
iTrader: (0)
Default The Ultimate JavaScript Tutorial in Web Design

In this free ultimate JavaScript tutorial, you'll find the full resources in web development, web design and web programming/coding. From the list of useful resources in this JavaScript tutorial, you ... detail at JavaScriptBank.com - 2.000+ free JavaScript codes


How to setup






JavaScriptBank is offline   Reply With Quote
Reply

Tags
code, free, javascript, library


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Php Code Help gulf PHP Forum 2 07-23-2010 06:26 AM
What will be validation for Zip code ? eluminoustech Website Products and Scripts 2 08-26-2009 05:15 PM
yahoo mail library nsood3 Yahoo! 4 07-31-2009 03:08 AM
Library Webmaster in Chicago kevinaugustine New Member Introductions 5 01-20-2009 07:00 AM
Favorite DHTML Library Chris Website Development 1 08-01-2008 09:21 PM

Show/Hide Menu
Webmaster Help

You are currently viewing our webmaster forum as a guest, with limited access to our forums and webmaster resources.

As a registered member of our webmaster forums you gain useful webmaster help and the ability to participate in friendly informative webmaster discussion with webmasters across the web.

If you have any problems with registration or your account login, please contact support.
Log in

Set Cookie?


Sites We Like

Ads

Copyright © 2004 - 2010 Webmaster Help. All Rights Reserved.
Exdevio Webmaster Network