[jQuery] Wiring using jQuery vs. a static string in onClick

2009-04-02 Thread Adam Patt
I am setting an onClick for many rows doing this: copy I could set this information as attributes in other parts of the table structure to get what I needed to make a way to wire these up via jQuery. I could have hundreds of these links to wire up. I know that my current way will produce more

[jQuery] Wiring up lots of text boxes

2009-04-02 Thread Adam Patt
I want to set the onChange event for a lot of text boxes on a page and the code I currently have looks like this: $(document).ready( function() { //wire up all changes $("#requirementsgrid :text").change (find_and_total_week); }