Code Snippet posted by:
Akiii | Posted on: 8/11/2012 | Category:
jQuery Codes | Views: 821 | Status:
[Member] |
Points: 40
|
Alert Moderator
<input id="txtProduct" type="text" size="150" />
$(document).ready(function() {
$('#txtProduct').focus(function() {
$(this).animate({
width: 250
})
});
$('#txtProduct').blur(function() {
$(this).animate({
width: 150
})
});
});?
Thanks and Regards
Akiii