All Entries in the "javascript" Category
JavaScript Source Code Encoder – eval String.fromCharCode
Share Hello Friends , You may have seen encrypted javascript codes on many pages. Have you wondered how source code can be encoded and decoded ? It pretty simple to encode using String.fromCharCode. I have written an Javascript Encoding Engine [ i have named it as Javascript Source Encoder - JSE in short ] so [...]
IP lookup using PHP | Plot location on Google Map using IP Address
Share Many of you would have seen IP lookup pages and that would give you details of your IP Address , your location etc. I planned to implement the same using PHP and was able to implement successfully . I am sharing it with you , hope this would help you in your projects . [...]
Update Timeline using Jquery as in Twitter | Live Twitter Search using PHP
Share Hello friends back to blogging after sometime . Recently i got a mail from one of my friend asking about how can we update a timeline using an animation effect as in twitter timeline . Here i am giving you a code in jquery that would help you to implement the same . I [...]
Live Character Counter as in Twitter using Jquery
Share In this tutorial i would explain how to implement live character counter using Jquery . I have included a live demo and the complete source code . The package contains only a single file with 3parts a css part , javacript part and an html part #bar { background-color:#5fbbde; width:0px; height:16px; } #barbox { [...]
Create Twitter alert style using Jquery.js and CSS
Share In this tutorial i would explain to you how to create twitter alert style using jquery.js and simple css . The alert drop downs from top of the screen to display what is in a PHP $_SESSION variable . I have included a live demo also . Hope this would help you . Here [...]
How to get Longitude and Latitude from an Address using PHP | Geocoding | JSON | Plot on Google Map using Location Address
Share In my previous article i explained “google-map-integration-using-javascript-php” . In all examples explained in the previous post we used longitude and latitude value to plot the location and we needed to find it manually . In many instance we would need to plot the location using an address . It can be done using a [...]
Google Map Integration using Javascript | PHP
Share Many of you would have wondered how we can integrate google maps to your web application . This tutorial would help you to do the same in a simple way using javascript and php . I am providing you a detailed description of Google Map Integration . Your First Map You need to get [...]
Capture Keystroke Using Jquery.js
Share Capture keystroke using jquery.js . Download and include jquery.js before you use the code . The code check the ASCII value of the key pressed . $(this).keydown(function(e) { if (e == null) { // for IE keycode = event.keyCode; } else { // for mozilla keycode = e.which; } if(keycode == 27){ // write [...]
Resolve Conflict between Jquery.js and Prototype.js
Share How to resolve conflict between jquery.js and prototype.js This tutorial would teach you to resolve the coflict between jquery and prototype when used together in same file . Its a simple tip to implement . 1. Create a noconflict.js file and include the following code in it . jQuery.noConflict(); var $j = jQuery; 2. [...]






