- Friday, July 17, 2009, 21:41
- JQuery
- 6,586 views
jQuery has became one of the most used and most loved JavaScript framework of all time. It not only does reduce the overhead in coding simple techniques in JavaScript, but also make your code cross browser compatible. I have written many tutorials on jquery and this time also I came with this simple plain implementation. The ...
Full story
- Monday, June 8, 2009, 19:39
- JQuery, Java, Tutorial
- 38,021 views
Autocomplete is a common feature available in lot of web tools and services. You will find lots of implementation of autocomplete features. Let us see how can we implement a simple Autocomplete feature for Country names in Java-JSP and jQuery.
We will use
jQuery's autocomplete plugin for our example. I have used Eclipse for the development of this demo.
Create a dymanic web project ...
Full story
- Thursday, June 4, 2009, 17:12
- JQuery
- 7,911 views
Tagging the content has increased the searchability of content in todays Web 2.0 world. Also similar content can be grouped together by assigning them same tags.
Tag Cloud has became a good way of displaying the weighted tags in a manner easy to understand and search. You can find a lot of code written in all ...
Full story
- Wednesday, May 6, 2009, 18:02
- JQuery, Tutorial
- 36,136 views
Ever tried implementing Drag & Drop feature using JavaScript? Believe me it is quite tough and has lots of cross browser implementation issues. Using jQuery you can create simple Drag & Drop features easily and manage them well. jQuery UI provides with a vast suite of APIs that can be leveraged to create a UI with ...
Full story
- Wednesday, April 29, 2009, 20:55
- JQuery
- 22,474 views
HTML Tabs have became one of the most used UI components in web design. Tabs are generally used to break content into multiple sections that can be swapped to save space. Different implementation of HTML Tabs are available and jQuery UI is one of the simplest one.
For adding jQuery tabs in your HTML page, first you ...
Full story
- Sunday, April 12, 2009, 7:41
- AJAX, JQuery
- 103,937 views
jQuery, the JavaScript library provides some powerful set of jQuery AJAX API's to handle AJAX requests. The normal way of making AJAX calls using JavaScript is a bit odd as you have to first create an XMLHttpRequest object that depends on the browser and then make an AJAX call. Also sending a form data using AJAX ...
Full story
- Thursday, April 9, 2009, 17:09
- JQuery
- 5,384 views
Handling events in today web browser is a bit difficult part as different browser handles events in a different way. Hence to overcome these cross browser problems, one can leverage the Event handling APIs of jQuery.
jQuery is a small JavaScript library that provides a vast number of APIs to handle different browser events and effects ...
Full story
- Friday, March 6, 2009, 18:42
- JQuery, JavaScript
- 20,357 views
jQuery is a small and wonderful JavaScript library that I use extensively in my work. I thought to write a tutorial about achieving UI Effects through jQuery. In
this post, I explained how to do fade in/fade out effect using jQuery. This time let us see all the tricks that we can do to manipulate ...
Full story
- Thursday, January 29, 2009, 18:38
- How-To, JQuery, JavaScript
- 42,752 views
Web 2.0 applications have became pervasive today. Lots of new features using AJAX, JavaScript, DHTML etc have been incorporated in web applications to make them rich in user appeal. One of the framework that has changed the way we write client side code is jQuery.
Let us see a simple trick to FadeIn and FadeOut a text ...
Full story
- Friday, December 19, 2008, 11:28
- General, How-To, JQuery, JavaScript
- 27,170 views
Maxlength of Textarea
Setting up maxlength of input text are easy. Just an attribute maxlength="##" does the work. But maxlength attribute does not work with textarea. I tried writing <textarea rows="5" cols="30" maxlength="120"></textarea> but this does not works.
So what to do if we want to fix the maxlength of a textarea?
Use following jQuery plugin for setting maxlength of any textarea on your page.
First thing for ...
Full story