Tooltip for jsp pages

Download and Include these two js files.http://www.blogger.com/img/blank.gif
1. jquery.min.js
2. jquery.qtip-1.0.min.js


input class="input_role" style="width:38%" type="text" name="${GROUP_NAME_ID}"
size ="20" onfocus="onFocus()" tooltip="Enter a Unique Group Name"
maxlength="15" id="${GROUP_NAME_ID}" onblur="onBlur(this)" />


$(document).ready(function(){
$('#groupName').each(function(element)
{
$(this).qtip({
content: $(this).attr('tooltip'),
style: {
border: {
width: 5,
radius: 5,
color: 'grey',
},
padding: 2,
textAlign: 'center',
tip: true,
background: 'grey',
color: 'white'
}

});
});
});