jquery: call functions immediately after plugin
- by Dave
I'm sure that there's an easy answer to this, but I can't find it.
I have a table 'myTable' which I stripe using the following
$("#myTable tr:even").css({ "background-color": "#FEE996" });
$("#myTable tr:odd").css({ "background-color": "#FFEFAF" });
This works fine.
I am also using a table filter plugin as follows
…