Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I view the HTML Dom afer a jQuery modification?

I am using DebugBar in IE to view the DOM. But after I modify the DOM with jQuery I can not see the new or modified DOM with DebugBar. How Do I view the modified DOM?

like image 903
Cook Avatar asked Jan 24 '23 11:01

Cook


1 Answers

Not sure about IE, but the Firebug extension for Firefox lets you view the changes and even displays then in a really user friendly way. Even if you must test in IE, you can always switch to using Firefox when you really need this functionality in developing your code.

Searching around I also found this piece of info for IE7:

IE7Pro just right click and choose View Generated Source.

like image 100
Scanningcrew Avatar answered Jan 29 '23 23:01

Scanningcrew