How would I do this?
#view
DIV(A('click me',_href='#',_id='parent',_onclick("ajax('clickback',
['parent'],':eval');")))
#controller
def clickback():
return 'jQuery("#parent").html("%s");' %\
SCRIPT("alert('hello world');")
So that when I click on "click me" it calls the clickback, which
inserts the alert on top of the same parent. If overwriting one's
calling div isn't kosher, then I'm OK targeting a second div.

