Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to Inspect an Element using Chrome Dev Tools

I have a base html file (base.html) and inside of it resides an iframe that uses (iframe.html). The iframe only shows up when a certain menu item is clicked. They are both hosted on the same domain.

In base.html I'm including a script that points to an external service that I use. Including the script returns an object that lives on my page.

<script type="text/javascript" src="externalSite.com/myID.js"></script>

In iframe.html I have another script that builds a menu based on some of the attributes of the object that is returned

<script type="text/javascript" src="my_list_builder.js"></script>

the code for my_list_builder.js looks something like this:

var myList = parent.externalAPI.getItems()
var listBlock = "<div><ul>"

for (var i = 0; i < myList.length; i++) {
    listBlock += '<li><span>'+ myList[i].Name + '</span></li>';
}

listBlock += '</ul></div>'

$('someElement').append(listBlock);

Now, this code executes as expected and adds the listBlock to the page where I want it, but when I try to inspect any of the elements within the iframe in Chrome I am unable to do so. The iframe is the lowest level element I can inspect, but it doesn't have the usual dropdown option. If I remove the my_list_builder.js I'm able to inspect the elements in the iframe without any trouble.

Any ideas on what might be causing the issue?

like image 900
megsa Avatar asked May 18 '12 00:05

megsa


People also ask

Why does inspect element not working on Chrome?

It might be a cache issue. After opening Developer Tools(F12) in Chrome, refresh cache by pressing Ctrl + F5. Show activity on this post. There may be another panel open.

Why can't I use the inspect element?

If you don't enable Inspect Element first, you won't see the option when you open a website. After you complete this step, simply right-click on any open web page and select Inspect. You can also use the quick keys command: CMD + Option + I (inspect).

How do I fix dev tools in Chrome?

# Open the Issues tab Open DevTools. Click the Go to Issues button in the yellow warning bar. Alternatively, select Issues from the More tools menu. Once you're on the Issues tab, click the Reload page button if necessary.


1 Answers

Try using the debugger keyword inside your iframe/non-iframe scripts. Simply putting debugger; on a line, should programmatically cause a breakpoint in the Chrome Developer Tools (also Firebug). More info: https://developer.mozilla.org/en/JavaScript/Reference/Statements/debugger

like image 168
blong Avatar answered Oct 20 '22 23:10

blong