> Is there an easy way of getting the other attrs if I want to grap it from > 'DELETEDIALOG' (sorry if this does not make sense, did not know how to word > it) I was thinking of using .index somehow, but not sure how to do that.
I'm not sure I follow. You can get any of the attributes using the attr method. If you want to parse the 'DELETEDDIALOG' text you can use a regEx. For example: var isDeleted = /DELETED/.test(text); Hope that helps. Mike _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
