Hey all, I have the following jEditable which allows a user to change their mood:
$(".mood-selector").editable("/user/mood", { data : "{'happy':'happy','excited':'excited','lucky':'lucky','loving':'loving','selected':'<? php print $moody; ?>'}", type : "select", submit : "OK" }); This works great, however I need to bind a click/change/mouseover event to the select that's generated by jEditable, so I can show a visual description of the option the user selects. I do not know how to get this operating with my jEditable. Has anyone tried this and can give me an idea?