Hello,<div><br></div><div>If I have an anchor with a callback:</div><div><br></div><div>html anchor</div><div>   callback: [ self doSomething ] ;</div><div>   with: &#39;DoIt&#39;.</div><div><br></div><div>Now I want to use jQuery to update only part of the page instead of a full page reload:</div>
<div><br></div><div>html anchor</div><div><div>   callback: [ self doSomething ] ;</div><div>   onChange: (html jQuery ajax script: [ :s |</div><div>      s &lt;&lt; (s jQuery: &#39;mydiv&#39;)</div><div>         html: [ :r | self renderMyDivOn: r ] ]) ;</div>
<div>   with: &#39;DoIt&#39;.</div></div><div><br></div><div>How do I make sure that the callback is performed before the render method is executed? With form elements you can use serializeThis but I guess that doesn&#39;t work for anchor elements.</div>
<div><br></div><div>Jan</div>