- Wednesday, June 17, 2009, 17:14
- General
- 6,145 views
Have you ever used textarea in your UI design to get text from user? (Ofcourse you must) :) You must have specified rows and cols attribute to define the height and width of the textarea, or by using CSS. By whatever mean you create your textarea, the width and height of the textarea is fixed. What ...
Full story
- Monday, June 8, 2009, 19:39
- JQuery, Java, Tutorial
- 17,435 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
- 5,346 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
- Friday, December 19, 2008, 11:28
- General, How-To, JQuery, JavaScript
- 17,620 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