Database Fetching with AJA...
The main feature of a dynamic page is content fetching without refreshing the page. This is made easy by AJAX technology. An HTTP request is generated and sent to the server. After processing this request an answer is sent back to the browser. All of these happen without refreshing or leaving the page. Quite impressing, isn’t it? Here you can find this tutorial easy to understand because it’s...
jFlow Slider with WordPres...
Hundreds of jQuery plug-in we use for sliding images in web pages. One of them is jFlow. Distinction for this plug-in is while other plug-in’s let you slide only images, jFlow offers other contents like iframe, flash etc. I use this plug-in for one of my project recently. It is easy to integrate with CMS like wordpress or drupal. Here is example to Integration process for wordpress. So let’s get...
MooTools Rating Plug-In...
MooTools Rating Plug-In Have you ever wondered how the rating stares work? In advanced JavaScript this has been never so easier. This kind of form elements generally found in blog for getting feedback of their usability. Some days before it was like some boring radio buttons or checkboxes. There is a mootools plug-in ‘moostarrating’ to make these kinds of works handy. Moostarrating is a plug-in...
Create Menu With Checkbox...
Checkbox Menu Many of e-commerce websites use checkbox menu with bulk processing feature. Checked options show their corresponding data along with the event. When the trigger is pulled then the event is called. Here is the reference for this task, AJAX from the jQuery docs. Now the syntax will look a bit strange, jQuery uses a lot of anonymous functions. Just play around and understand the samples...
Drag and Drop File Uploade...
If you are feeling bored using same kind of html uploader, this article would help you much. Here we are using drag and drop option. Almost every browser is now has support for drag and drop upload system. Some web sites are using this for most upgraded UI. Here is a sample code for instance. The HTML is as simple as basic uploader. But you have to add an ‘enctype’ attribute with ‘multipart/form-data’...
Content cache an retrieve ...
Website with huge database is often slower when pulling data from another feed. It’s a total harass when hitting your database again and again after knowing it’s not changing so frequently. This snippet can query after the database updates. And it fetches data from cached content when database is not synchronized.   // JavaScript Document$TWITTER_FOLLOWERS_FILE_NAME = ‘twitter-followers.txt’; $TWITTER_FOLLOWERS_URL...