Web Inspector is a built-in set of developer tools in WebKit based browsers.
1
vote
1answer
8 views
Get HTML Source of temporary drag & drop element
I have this page I can only access in the browser. There is a HTML element that only exists during drag&drop, and I want to get / analyze its HTML code in the Inspector / Firebug.. but as soon as ...
0
votes
0answers
10 views
chrome inspector slow on local sites
At some point during the past few chrome releases, using the inspector on a local site is really slow. I have a simple nginx server running serving static files. Opening the inspector takes about 30 ...
0
votes
2answers
32 views
Control Chrome Web Inspector in Javascript console?
Is there anyway to control the Chrome Web Inspector in the JavaScript console?
For example, say I wanted to select an element (#test_element) in the "Elements" panel. Normally I right click on the ...
1
vote
2answers
53 views
Chrome Web Inspector: Find and Replace
Is there a "Find and Replace" function in Chrome Web Inspector? If it exists, there can I find it? I'm using chrome 26.0.1410.64, if it matters.
0
votes
1answer
16 views
Launch Web Inspector/Firebug from within website?
Is it possible to launch a browser's native web inspector or developer tools via an anchor/button on a web page?
0
votes
1answer
31 views
What is the usage of the GOOGLE_INPUT_CHEXT_FLAG in Google Chrome Web Inspector?
Now a days I can see that just before the ending of the </body> tag something like below appears:
<div id="GOOGLE_INPUT_CHEXT_FLAG" style="display: none;" input="" ...
1
vote
1answer
30 views
Logs not appearing in Web Inspector
Both ForgeLogs and NSLogs aren't showing up in my Safari Web Inspector when I'm testing. Am I doing something wrong or is that intentional?
[ForgeLog d:@"Playing file at..."];
EDIT: Here's the rest ...
0
votes
0answers
42 views
Developer tools not working in Chrome osx
Trying to open developer tools in Chrome, either through the main menu or through inspect elements context option, I see the inspector window flash up and then just disappears. Everytime.
What's ...
0
votes
1answer
57 views
Has anyone noticed an issue with links on chrome that prevents the pointer to be shown on hover with inspector activated?
On Chrome version 26.0.1410.43 m, I was wondering if anyone had noticed the following issue...
The cursor no longer appears on links hover while the chrome-devtools inspector is activated...
...
0
votes
2answers
65 views
Why doesn't this piece of code throw an error in JavaScript?
It took me a while to find this problem in my code when it stopped working.
console.log('before var');
var lastReview = ''
newReview;
console.log('after var');
There is no comma after ...
0
votes
2answers
60 views
Inspect the HTML Element Which comes only on Hover or Focus [duplicate]
i just want to inspect one html code block(for eg: tooltip), which comes only when i focus on the input text box. I am unable to see the properties of the tooltip code block, using web inspector or ...
1
vote
2answers
80 views
Inspecting javascript variables as code popups in chrome
Anyone know how you get the yellow popup to appear when inspecting javascript variables in chrome? Apparently you just hover over the variable when the debugger is paused to see a variables current ...
0
votes
0answers
15 views
Is there a keyboard shortcut for the “select element” functionality in Webkit Web Inspector?
You know, the button that you click so you can click on an element to focus it in the DOM inspector. It is likely if such a shortcut exists on both Safari and Chrome that it might be different between ...
1
vote
0answers
9 views
how to pass in params in web-inspector when debugging node
for example: http://localhost:8989/debug?port=5858 would work but http://localhost:8989/snooges/hello/debug?port=5858 would close the connection.
The code I would like to debug:
var express = ...
0
votes
1answer
53 views
Add css style to the page in chrome web inspector
How to require a local css stylesheet for a web page with chrome web inspector?
1
vote
3answers
53 views
Put a value in webkit console from console.log into a variable
If there is an output in the chrome/safari webkit inspector containing an object that prints out such as:
Only much more complicated with loads of nested objects (which is why a copy/paste wont do)
...
5
votes
1answer
58 views
How can I tell what events are bound to a DOM element?
When using the Wordpress visual editor, if you have a [gallery] shortcode, in visual mode it is presented with a placeholder.
Clicking the placeholder will overlay two icons - edit gallery and remove ...
0
votes
0answers
43 views
Persist console output in Safari Web Inspector
Does any one know how/whether it is possible to preserve the console output, errors, info etc of Safari's Web Inspector?
I'm trying to debug an ajax call thats failing and navigating to the page but ...
0
votes
1answer
45 views
A Better Side View of Chrome Developer Tools
I can't for the life of me remember where this is, but there is a User Agnet CSS file out there for Google Chrome Dev Tools that someone created to have a better layout when using side view. Anyone ...
0
votes
1answer
55 views
Show css comments in web inspector in chrome
Is there a way to show the comments that are generated in my css file in websinspector, I can see the comments when I view the css file in the resources tab but I dont see them in the elements styles ...
1
vote
2answers
90 views
How to see cookies with Google Chrome Inspector?
I am using Google Chrome Web Inspector to debug a web page.
In tab network, I am able to see a call to a Server API and detect Request Cookies and Response Cookies for that URL, os I suppose a ...
0
votes
1answer
30 views
Inspecting Web View of an app that's not mine IOS
I've just downloaded an app from the app store, and I've seen some interesting web content that I'd like to inspect. I can't manage to do that in Safari on the desktop, probably because the app is not ...
0
votes
0answers
21 views
Use JS to test if debug console is open/attached
I have some code that overwrites console.log to aid in debugging by sending it log output to a DOM element so the website, on iOS devices, can be debugged without the aid of a USB cable and Mac (or ...
0
votes
0answers
47 views
Set AJAX response breakpoint with WebKit remote debugging API
WebKit Inspector's DOMDebugger.setXHRBreakpoint(url) sets a breakpoint for when a request is initiated. Is there a way to set a breakpoint for when a response is received?
I could set the change ...
1
vote
2answers
179 views
Change the context of the Safari 6 console to an iframe on the page
I know that Chrome let's you pick the context for the console's execution with a dropdown menu and that Firebug let's you cd() into an iframe. I can't figure out how to change the context in Safari's ...
0
votes
0answers
13 views
Stop Safari Web Inspector from auto switch to Network Request
I am using Safari 6.0.1 for developing. I mainly need to watch the Log and sometime the DOM tree in Resource, as I navigate from page to page. However, as soon as I go to a new page, the Web Inspector ...
0
votes
0answers
27 views
Embed web inspector console in a page
Is there any way to embed "console" tab from chrome web inspector an a page?
0
votes
1answer
102 views
How can I disable the javascript debugger in the Web Inspector for the iPhone simulator?
I am using the Web Inspector in desktop Safari (Version 6.0.2 (7536.26.17)) (under the Develop menu) to debug Mobile Safari's interaction with a web application in the iOS Simulator (Version 6.0 ...
1
vote
0answers
37 views
Chrome element inspector only displays visual dimensions if the element has a “class”
I'm guessing this is because of an update because I feel I would have noticed this before, but when I use Chrome's element inspector it only highlights the dimensions of an element if that element has ...
3
votes
3answers
249 views
How to connect to iPhone's webkit debugger?
new iOS 6 feature is, that you can debug html and javascript running on device or simulator in desktop safari. I suppose, that this feature is based on Webkit Remote Debugging Protocol.
How can I ...
0
votes
0answers
43 views
how to record “Initiator” information as reported by Chrome Inspect Element
Chrome's Inspect Element "Network" tab presents lots of nice information about your URL requests. You can even save all this to a HAR file which is neat.
However, I can't see where the "Intiator" ...
2
votes
2answers
73 views
Chrome can no longer log inspectable jQuery objects from scripts [duplicate]
Possible Duplicate:
How do I console.log a jQuery DOM Element in Chrome?
In the latest stable Chrome 23.0.1271.101, and Chrome Canary 26.0.1373.0, running the following code from a script:
...
0
votes
1answer
113 views
Pevent Inspect Element html changes to dropdown menu values (And other user inputed content) from saving to database
I just recently began testing my website for bugs and such, and I came across a HUGE issue that I never thought would be one, for the fact that I didn't think changes made with Firebug and similar ...
1
vote
1answer
40 views
How to hide content script tab in chrome web inspector
The content script tab is useless, isn't it? How to hide it and show sources tab by default?
1
vote
1answer
114 views
Inspect Element library in javascript [closed]
I am looking for a native javascript library or a jquery plugin which can help me in creating something like "Inspect Element Tools" on a website. I just need the basic functionality where the code of ...
1
vote
1answer
114 views
Cannot discover ipad in Develop menu in Mac Safari
I need to debug a Javascript on iPad Safari (iOS-6). I guess this can be done using remote debugging by connecting it to the Mac (or using a xCode iPad or iPhone simulator instead of connecting an ...
0
votes
0answers
103 views
Running custom Chrome Developer Tools frontend on Windows
I've downloaded chrome-linux.zip from here, played with devtools source code (chrome-linux/resources/inspector) and tested my modified version with
google-chrome ...
2
votes
1answer
74 views
Google Chrome Inspector: How to edit an Object on a break point?
Didn't see a duplicate of this question.
I have a break point on an event object (from fullCalendar). I'd like to change a parameter manually since this data is coming from a backend.
e.g.
event: ...
0
votes
2answers
142 views
Access Web Inspector in Safari with Applescript
I'm trying to create an Applescript script which essentially downloads files from Safari. However, the files are not available for download via the web page, so I usually open up the Web Inspector and ...
4
votes
2answers
911 views
how to enable WebKit's remote debugging/inspector of Android app using WebView?
I need to inspect javascript execution (webview widget) in an android application,
while debugging; through SDK & usb cable and/or http/websockets;
from destop computer (e.g. chrome running on ...
0
votes
0answers
76 views
How to view XHR content in iOS via Mac's Safari web-inspector?
I'm debuging webapp on iPad with the help of Mac's Safari. Server responses 500 error to some requests, but I can see only response message. How can I get POST data of those requests?
0
votes
0answers
54 views
In Chrome inspect elements, is there a way to search through all headers in network, just like search in IE9 dev tool?
In Chrome inspect elements, is there a way to search through all headers in network, just like search in IE9 dev tool? I tried to google but got nothing.
Thank you very much!
0
votes
0answers
47 views
View edited style sheet in Safari 6
It seems that in Safari 6, if you make live edits to a style sheet, you cannot view the updated style sheet in the inspector, only the original one.
Does anyone know if this is based on an option I ...
4
votes
0answers
116 views
When iOS simulator starts, is it possible to automatically load the Web Inspector?
I'm using iOS 6 simulator with the shiny new Web Inspector in Safari.
Question: Is it possible to automatically load the Web Inspector when the iOS 6 web application loads?
I'm using ...
3
votes
1answer
193 views
Chrome is shrinking viewport when I open the web inspector
For some reason, whenever I open the web inspector in Chrome, the viewport of the browser shrinks. The only way to fix it is to close the inspector. Does anyone know how to fix this so it doesn't ...
0
votes
2answers
184 views
issue with jquery and updating css background images not loading in chrome
I'm trying to replace a background image on an element with jquery. The code looks correct, and if i stop the execution of the page and inspect the element, it is the correct element. However, it does ...
1
vote
0answers
74 views
Where, in the WebKit Inspector js, does control return to the page being inspected?
I've been looking through the WebKit Inspector js that is available from the Chromium project here: https://developers.google.com/chrome-developer-tools/docs/contributing
The developer tool can be ...
4
votes
3answers
276 views
Eliminate 404 url error in console?
I try to eleminate an 404 error occuring because the source (src) is missing..
var $chart = $("<img />")
.addClass("trend-pic")
.error(function(){
console.log("error loading..")
...
0
votes
6answers
192 views
JQuery CSS on html() text
This is my line of jquery code:
var data = $("span", this).html(); /*grab all */
$calPopup.stop().fadeTo(300,1);
$calPopup.html(data);
And I want to do something like:
...
0
votes
1answer
166 views
Chrome devtools: Drop into debugger without switching to Sources tab
If I put the debugger statement in my JavaScript source with the Chrome devtools open, it'll stop execution so I can interactively explore the current context from the console. It's really awesome.
...

