In my $().ready()
area, I want to add a property to an object, based on another property of it. it should be done before any event on the object.
e.g:
<input value="text" />
$().ready(function(){
$("input").newProp = ???
});
How can it be done?