During website development:
Before closing the html/body, I include a call to a .js-File, to do some DOM-manipulating via Javascript/jquery (e.g. $('#foo a').addClass('bar'); etc., the usual).
I open the file in the browser, then F12-inspect the code and then -- developing -- try out "this and that" by directly manipulating the HTML in the console. Of course, the jquery does not work on those freshly manipulated elements, because it has already been fired and is through. Is there any way I can tell the Chrome (or the Firebug) inspector to re-run that .js-File just to see how it would work on the changed elements of the HTML-document?
Thanks in advance...