Using Chrome’s Element Inspector in Print Preview Mode?

I am working on developing a website and need to work on the print view. Typically when I have layout issues I use Chrome’s Element Inspector. However this does not exist in print preview mode. Is there a Chrome plugin or some other way to change your viewing medium within chrome itself, to view a … Read more

jQuery’s jquery-1.10.2.min.map is triggering a 404 (Not Found)

I’m seeing error messages about a file, min.map, being not found: GET jQuery’s jquery-1.10.2.min.map is triggering a 404 (Not Found) Screenshot Where is this coming from? 1Best Answer 11 If Chrome DevTools is reporting a 404 for a .map file (maybe jquery-1.10.2.min.map, jquery.min.map or jquery-2.0.3.min.map, but can happen with anything) first thing to know is … Read more

Colors in JavaScript console

Can Chrome’s built-in JavaScript console display colors? I want errors in red, warnings in orange and console.log‘s in green. Is that possible? 29 s 29 In Chrome & Firefox (+31) you can add CSS in console.log messages: console.log(‘%c Oh my heavens! ‘, ‘background: #222; color: #bada55’); The same can be applied for adding multiple CSS … Read more

How does Facebook disable the browser’s integrated Developer Tools?

So apparently because of the recent scams, the developer tools is exploited by people to post spam and even used to “hack” accounts. Facebook has blocked the developer tools, and I can’t even use the console. How did they do that?? One Stack Overflow post claimed that it is not possible, but Facebook has proven … Read more