I'm having a strange issue on IE (isn't it almost always the culprit of issues).
I'm returning this: <taconite> <replaceContent select="#mystatus"> <a href="#" onClick="setStatus('mystatus', 'statusID', 'update status to this value');"><img src="/images/icons/check.gif" width="16" height="16" border="0" /></a> </replaceContent> <replaceContent select="#mystatusDate"> dynamic date status created </replaceContent> </taconite> it's hard to see exactly what's coming in on IE without firebug but the items are getting updated. The problem comes when I try to click on the "checkbox" image the second time (after it was first called and the data is returned). However, that second time does nothing. The function setStatus is not being called (determined by putting an alert at the top of the function just to tell me it's being called). I would just use a bind click event, but the problem is that I have a dynamic number of "statuses" that have to pass specific values to the server in order to be processed. Since it was all working everywhere else, I thought I was good, until I tried in in IE. Any suggestions?