views:

683

answers:

8

Anyone knows a dom inspector javascript library or plugin?
I want to use this code inside a website i am creating, i searched too much but didn't fid except this one http://slayeroffice.com/tools/modi/v2.0/modi_help.html


UPDATE: Seams That no one understood about my question :(, i want find an example or plug in which let me implement Dom inspector, i don't want a tool to inspect with, i want to write mine.

+2  A: 

How about Firebug Lite - it's like Firebug but you insert it into your page and so you can debug your html, css, Javascript and the DOM on most browsers (including non-FF ones)

Perspx
+1  A: 

Firebug is a good solution for Firefox. You can browse a page's HTML, JavaScript, DOM, network activity, etc. Safari also has fairly good tools built-in (I'm using the Safari 4 beta at present), though I find it's easier to navigate around Firebug.

Adam Backstrom
A: 

Yes, there are plenty. For example, Firefox has DOM Inspector, Firebug, and X-Ray. I think Firebug is the best of the three, personally.

John Feminella
+1  A: 

Developer Tools on IE8

Alekc
A: 

Try Backbase Debugger Application. It also has an I/O inspector.

Sergey Ilinsky
A: 

I used to use Firebug, and Firefox all the time, now thanks to IE8, which has really cool tool called Developer tools --- that allows to see all the Javascript, CSS and also allows to really cool debugging feature. MICROSOFT is getting there !

Shiva
+3  A: 

Aardvark is a firefox extension officially but you can use that as a javascript library, too. The inline demo in the said website is implemented using javascript. digg into the code & you'll find loader.js which is bootstrapping the Aardvark modules.

Sepehr Lajevardi
And this one is also very nice, but its over my needs and a lot of code.
Amr ElGarhy
+1  A: 

I found this one: http://userscripts.org/scripts/review/3006

And this one also is fine:

DOM Mouse-Over Element Selection and Isolation

Which is very simple with few lines of code and give me something good to edit a little and get exactly what i wanted.

Amr ElGarhy