How to access the jQuery event object in a Seaside callback
- by Mef
Basically, I want to translate the following into Seaside Smalltalk:
$(".myDiv").bind('click', function(e) {
console.log(e);
});
Besides that I don't want to console.log the event, but access it in my ajax callback.
The most promising approach seemed to be something like
html div
onClick: (html jQuery ajax callback: [:v | self halt]…