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] value: (???);
with: 'Foo'.
But I couldn't find any way to access the event that caused the callback. Intuitively, I would try
html jQuery this event
for the ??? part, but the Seaside jQuery wrapper doesn't know any message that comes close to event.
Any help is appreciated. There has to be away to access the event data...