Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to write a browser (Chrome/FF) extension that needs to select an element on a web page. I would like it to behave like Firebug's element inspector does. You click the inspect arrow and you can then hover/highlight elements. When you click on the element you want, the element is inspected. I'm just interested in the code to allow a user to select an element - not in actually inspecting it or anything similar.

Because I'm writing an extension, it might be nice if you could provide non-jQuery/Prototype/etc.. code so I don't have to distribute that.

share|improve this question
The easiest way is to check Firebug's code. If you've installed firebug, you can find the code inside the firefox profile folder. The default location in my linux machine ~/.mozilla/firefox/random-chars.default/extensions/firebug@software.joehewitt.c‌​om/content/firebug In Vista it is something like: C:\Users\<user-name>\AppData\Roaming\Mozilla\Firefox\Profiles\random-chars.defa‌​ult\extensions\firebug@software.joehewitt.com\content\firebug – Amarghosh Mar 8 '10 at 7:26
Well, it sounded like a great idea--at first. Then I went and looked at the code and there's 50+ files all of reasonable size. I don't even know where to begin and moreso, I don't know what to copy/paste/modify. So, sadly this is definitely not the "easiest" thing. I will probably home-brew something unless I find other solutions or others respond. – Chad Mar 9 '10 at 6:22

5 Answers

up vote 4 down vote accepted

I wrote an implementation of this using jQuery as a component of another project. The source and documentation are available here: https://github.com/andrewchilds/jQuery.DomOutline

share|improve this answer
Very cool, thanks for sharing! – Chad Oct 21 '12 at 3:47

I ended up asking in the Firebug group and got some great help:

http://groups.google.com/group/firebug/browse_thread/thread/7d4bd89537cd24e7/2c9483d699efe257?hl=en#2c9483d699efe257

share|improve this answer
1  
Can you the code with us please? I want to do something similar – Vaibhav Garg Apr 16 '10 at 10:26
I'm doing a similar thing in one of my projects but I need to a little bit to this. After the element is selected, I want to get the Unique selector for that element. Any idea how to do that? Right now I'm hacking it... If the selected element has ID attribute, we are good. Else I check for class and find the index of the selected element with similar class and if it doesn't then I take the Tag name repeat the same process. But this method is totally not reliable. Is there a better alternative? – Ashit Vora May 31 '12 at 12:26

One simple way to do it is to use an outline instead of a border:

.highlight { outline: 4px solid #07C; }

Just add and remove that class to any element you want to select/deselect (code below is not properly tested):

document.body.addEventListener("mouseover", function(e) {
    e.stopPropagation();
    e.target.addEventListener("mouseout", function (e) {
        e.target.className = e.target.className.replace(new RegExp(" highlight\\b", "g"), "");
    });
    e.target.className += " highlight";
});

Since you are using an outline, (which is supported by Chrome) instead of a border, elements will not jump around. I'm using something similar in my EasyReader Extension.

share|improve this answer

There was a similar question asked on Stackoverflow and it had lots of good answers: Does anyone know a DOM inspector javascript library or plugin?

For those who are looking for a quick and dirty solution:

http://userscripts.org/scripts/review/3006 is the easiest. Just put the code within <script></script> tags and you are good to go.

https://github.com/josscrowcroft/Simple-JavaScript-DOM-Inspector/blob/master/inspector.js is slightly better and still very easy to integrate in.

For a more sophisticated element inspector, you might want to check out the SelectorGadget as pointed by Udi. The inspector selection code is in http://www.selectorgadget.com/stable/lib/interface.js

share|improve this answer

Also check this one out:

http://rockingcode.com/tutorial/element-dom-tree-jquery-plugin-firebug-like-functionality/

I found it pretty insightful.. and there's a demo here:

http://rockingcode.com/demos/elemtree/

Hope this helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.