What is the difference between jquery .on and ._on?
When I search the jquery API I only get .on returned. Google also does not return anything helpful. I'm definitely seeing it in code that works though, for example:
$grid._on("click",".gridSave:not(.disabled)", self.saveRow, self); $grid.on("click",".gridSave.disabled", function(){ return false });
._on()doesn't exist injQuery.fnby default where chainable methods reside so might be custom method. Where did you get that from? Is$grideven a jQuery object?