Using class name I am firing a click event in jquery. Class names are added to different types of controls, is there any way to check type of control it is been fired?
jquery event
$(".ClassName").live("click", function (e) {
//Here I want type of controller which fires this event
});
Thanks in advance
1 Answer