Compressed.tracemonkey-pldi-09.pdf. Mozilla/pdf.js. Cool And Free Launch Page With Ajax Newsletter. Almost every web project needs a "launch page (under construction page)" or a page to show when the website is under maintenance. Rather than creating a new one from scratch for every project, here is a free launch page with an Ajax newsletter. Don't forget to bookmark this resource at del.icio.us. E-mails are saved in a .txt file with ";" delimiters. So they can be used anytime with a simple copy-paste. Important: Before using this free launch page, change the name of the text file to anything hard to guess and also update the name of this text file in newsletter.php file's 1st line. You can use this template as is or update it easily to fit your needs. Features of this free launch page: Ajaxed interfaceServer-side e-mail validation (secure)E-mails are saved in a text file with ";" delimiter.
Requirements: Uses jQuery and jQuery PNGFix plugin (both included with the download).PHP support. PSD files of bubbles are included in the download package. Free Vector World Maps Collection. Dynamic Drag’n Drop With jQuery And PHP. After publishing ScheduledTweets yesterday, I received e-mails asking "how the drag'n drop & saving the new positions to the database was working". Drag'n drop generally looks hard-to-apply but it is definitely not by using JavaScript frameworks.
Here is, how it is done by using jQuery & jQuery UI: The Database: We create a simple database as below: The most important column in the database is recordListingID which shows us the order of the records. This feature can be applied to any table by adding such a column to it. The HTML: We'll be using an unordered list that is generated from a PHP query that lists the items according to the recordListingID value mentioned above. Here it is: 1. 2. 4. 5. 6. The JavaScript: We will be using jQuery UI's sortable plugin. 01. 02. 04. 05. 06. var order = $(this).sortable("serialize") + '&action=updateRecordsListings'; 07. $.post("updateDB.php", order, function(theResponse){ 08. 15. The PHP: 01. <? 02.require("db.php"); 04. 05. 07.if ($action == "updateRecordsListings"){ 09.