WordPress Countdown Plugin

WordPress Countdown Plugin is a plugin that help you to add JQuery countdown timer on your WordPress post/page. It is as easy as add a shortcode to the WordPress post/page content.Grab the code below to quickstart:WordPress Countdown Plugin Installation To install this plugin is as easy as add plugin from your Admin Page:Browse to plugins > Add New Search with this "WPCountdown" And click install nowThen after it is installed and activated, you can use it freely in … Read more...

Snippet Code To Make Automatic Live URL With JQuery

Sometimes if you a blog or forum owner you need to make all your text (in url format) turn into a live url (clickable) to make your visitors easier to visit the link inside that content rather than manual copy that link and paste it in address bar. It's hard if you change all your content one by one to make this link click able.See the following example:Text with url format (unclickable):Live link/url (clickable): So to change that text into live link, you can … Read more...

Turn Off Light Feature For Video Streaming Site

Most of the times when you watching a streaming video from Youtube or other else, you found that all the comment or related videos or ads are little bit distracting. So if you own a video streaming website, it’s better if you can give this turn off light feature, so your visitor can enjoy their time when watching a video from your site.To implement this turn off light feature, you need JQuery to modify CSS on the fly.For JQuery library i’m using Ajax from Google API:And for … Read more...

Get Twitter Update With JQuery

From the previous article i write, Get Last Tweet Without OAuth Using PHP, and now i want to share with you how to get the twitter update with JQuery.Get Twitter update with JQuery is not much different, we are using the same API given by Twitter , process it and display the results. You can get the Twitter update from someone using their username using this Twitter API:Where username would be the twitter username, and format could be json, xml, atom and rss.Okay as usual, if we … Read more...

Learning JQuery For First Time

jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript. It’s the definition from the author of JQuery. And JQuery also a cross browser javascript library, which means write once and run in every browser.There are a lot of other AJAX frameworks out there, such as Prototype, Mootools, Ext library, Google Webtoolkit … Read more...