Hopefully this is a simple question for a jQuery newbee. Is it possible to execute jQuery methods from a javascript method?
I've got some jQuery stuff adding zebra stripes to a table and some other things going on, but that table gets updated via an mvc ajax request and then none of the styles are applied to the table once the ajax call is complete. This is obviously because those styles are applied when the dom is ready only ( it's currently being called with the standard jQuery $(function() {... magic in here }) method).
The ajax request provides a way to execute a javascript method on callback and I'd like to be able to apply those same styles via jQuery from that javascript function.
Thanks in advance!