Automatic jQuery site subscription lightbox

Ajax, Tutorials, Web Design & Programming
Getting Started You’ll need to include the jQuery library as well as the Colorbox lightbox JS and CSS which are included in the download below. <!-- Color Box CSS --> <link media="screen" rel="stylesheet" target="_blank" href="css/colorbox.css" /> <!-- Style For the Subscription Box --> <link media="screen" rel="stylesheet" target="_blank" href="css/popup.css" /> http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js http://js/colorbox.js The JS Code Once the page loads we check to see if the cookie exists and hasn’t expired. If it’s expired or doesn’t exist we set the cookie to expire in 15 days, and we show the lightbox. $("document").ready(function (){ // load the overlay if (document.cookie.indexOf('visited=true') == -1) { var fifteenDays = 1000*60*60*24*15; var expires = new Date((new Date()).valueOf() + fifteenDays); document.cookie = "visited=true;expires=" + expires.toUTCString(); $.colorbox({width:"580px", inline:true, href:"#subscribe_popup"}); } $(".open_popup").colorbox({width:"580px", inline:true, href:"#subscribe_popup"}); }); The HTML Here’s the HTML…
Read More

Validation with jQuery

Ajax, Tutorials
This time I need to clarify about "Form acceptance utilizing standard outflows with jquery". I had advanced an excercise utilizing jquery.validate plugin, It's extremely straightforward. Actualize this and improve your web tasks. http://ajax.googleapis.com/ajax/libs/jquery/1.3.0/jquery.min.js http://jquery.validate.js $(document).ready(function() { $.validator.addMethod("email", function(value, element) { return this.optional(element) || /^[a-zA-Z0-9._-]+@[a-zA-Z0-9-]+.[a-zA-Z.]{2,5}$/i.test(value); }, "Please enter a valid email address."); $.validator.addMethod("username",function(value,element) { return this.optional(element) || /^[a-zA-Z0-9._-]{3,16}$/i.test(value); },"Username are 3-15 characters"); $.validator.addMethod("password",function(value,element) { return this.optional(element) || /^[A-Za-z0-9!@#$%^&*()_]{6,16}$/i.test(value); },"Passwords are 6-16 characters"); // Validate signup form $("#signup").validate({ rules: { email: "required email", username: "required username", password: "required password", }, }); }); Download Script
Read More

File browser with ajax

Ajax, PHP
This class can used to maintain indexes on the server side utilizing an Ajax based client interface to maintain a strategic distance from page reloading. It produce a client interface to perform numerous sorts of operations on server side records perusing envelopes, erase, duplicate, glue, cut, and make new index or envelope. Download file
Read More

Edit Table in Ajax

Ajax, PHP, PHP Scripts
This class might be utilized to alter information in the cells of a Html table utilizing Ajax to safeguard the adapted unit values without reloading the present page. It takes a bi-dimensional cluster as parameter to describe the substance of the units of the table to be altered. At that point it creates the table Html with the indispensible Javascript code to alter the unit substance. The client may alter the units by clicking on them. The unit is transformed into a content information so the client can modify the unit substance with the console. In the event that you are utilizing Advate then you can detail the sort of info you need returned: content, textarea, select, radio, and checkboxes. For the last three, you have the capacity to define…
Read More

AJAX Rating Counter

Ajax, PHP, PHP Scripts
This bundle might be utilized to actualize a star rating framework that uses Ajax to overhaul the normal rate without reloading the rate page after a client has voted. It can show the present normal rating between 1 to 10 utilizing star symbol pictures. Another rating submitted by a client is sent to the server utilizing an Ajax solicitation. The server gives back where its due rating normal and the star symbol pictures change to the new rating worth. Download file from here
Read More

Ajax chat scripts

Ajax, PHP, PHP Scripts
This class might be utilized to bring about a modest Web based visit framework that uses Ajax to overhaul the talk dialog show range without reloading the entire page. The class creates a page with a Web shape to submit what every visit line that the clients sort. The talk lines are sent to the server utilizing a Xmlhttprequest item. The talk lines are accepted by a server side script that uses the class to store what every client entered in a Mysql database table. Accordingly, the class yields the talk record recently designed to by shown in the client program pages. Download File
Read More

AJAX File Uploader

Ajax, PHP, Tutorials
This class might be utilized to scan records transferred through Web shapes utilizing Ajax strategies to send the records without reloading the shape page. There is helper Javascript code that can transfer out of sight a record that the clients picks in a Web page shape and overhauls the transfer memo status in the page. A server side helper script gets the transferred indexes and duplicates to a transfer index. The class might be utilized to output the transfer index and record the formerly transferred documents as per diverse sorts: picture, sound, film and other. Download file from here
Read More