Tag Archives: Javascript
Useful JavaScript Plugins when working with Time and Date

Useful JavaScript Plugins when working with Time and Date

Rounding up the best calendar and date javascript plugins around the web that is useful for your web application.

Read more
10 Best AJAX File Uploader for your Web Application

10 Best AJAX File Uploader for your Web Application

Most of the web application available today includes a capability of user to upload files, whether it is a social media application or a CMS/Blogging platform. Upload capability of your application can be made easier and usable to the user if you are using one of these Ajax Upload Script and Plug-in.

Read more
Mind-blowing JavaScript Experiments

Mind-blowing JavaScript Experiments

The following JavaScript experiments demonstrates the amazing capabilities of the modern browsers such as Chrome and Safari. In this post I will showcase to you an array of experiments that will surely blows your mind off.

Read more
Rounding Up the Best Javascript WYSIWYG and Markup Editor

Rounding Up the Best Javascript WYSIWYG and Markup Editor

WYSIWYG Editor is the first requirement if you want to develop a web application which involved HTML editing and you want your user see a real time preview of what they are editing. Most of the available Content Management System and other publishing platform in the web are using WYSIWYG editor for easy page editing.

Read more
All About Tables – jQuery Plugin

All About Tables – jQuery Plugin

Yes HTML table tag is not recommended in designing your websites anymore but it is still very useful especially in displaying a tabular data. In this article I will be featuring a list of jQuery plugins that are utilizing the html table tag.

Read more

Javascript Back Button

This is the simple JavaScript back buttons navigation
button
<input onclick="history.go(-1)" type="button" />
Link
<a onclick="history.go(-1)" href="#back">Back</a>
Image
<img onclick="history.go(-1)" src="images/back.gif" />

Read more