How to access the jQuery event object in a Seaside callback

Posted by Mef on Stack Overflow See other posts from Stack Overflow or by Mef
Published on 2010-06-06T15:09:08Z Indexed on 2010/06/06 15:12 UTC
Read the original article Hit count: 374

Filed under:
|
|
|
|

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...

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about AJAX