I am trying to do some things on a form element blur. The problem I'm having is passing the element's info such as ID, class, etc to a second function. I've simplified it down for this example:
function otherfunction() {
var inputID = $(this).attr("id");
alert(inputID);
}
$(".formelement").blur(function () {
// Do some stuff here
otherfunction();
});
Of course, the alert box says that the inputID is undefined. How can I get the element's info passed to the otherfunction?
this.idto access the ID of an element instead of$(this).attr('id')– Vega Apr 11 '12 at 19:13