Questions tagged [web-console]

Web Console is the Mozilla Firefox panel which allows stylesheets and document structure as well as network requests to be inspected. Use this tag for questions about using the panel for debugging web applications.

Web Console is the Mozilla Firefox panel which allows stylesheets and document structure as well as network requests to be inspected, among other things. It can typically be accessed with the key combination CtrlShiftK.

Chrome/Chromium calls it Developer Tools and offers CtrlShiftI or F12 to access it.

Internet Explorer also offers a similar function which the F12 key can access.

Use this tag for questions about using the panel for debugging web applications.

60 questions
0
votes
1 answer

In Minishift, Web Console API path not changed to public domain setting

My case would be, I would like to share my minishift instance to my intranet network. It looks like there is no option to choose the network / IP, e.g. if you try to set the virtualbox network interface to "bridge", it would just fail So I would…
0
votes
0 answers

An Error on Apache Ignite Web Console

I am a beginner in ignite and I am learning to use Web Console.After I generated the pojo classes and I wanted to download the whole JAVA project. But the Web Console shows that Failed to generate project files. Uncaught TypeError: Cannot read…
zRegle
  • 57
  • 4
0
votes
1 answer

Is it possible to use xdotool to enter a web console command?

Is it possible to use xdotool to enter a web console command like this command: $("#var2").css("move", - 44 + "deg")
alberto
  • 29
  • 6
0
votes
1 answer

Android GCM/FCM,multiple users application. User and Admin

Android GCM/FCM,multiple users application Designing GCM/FCM,multiple users Android application Trying to design multi user application Admin and normal user I am confused how should I design the application? Which way to prefer amongst following or…
0
votes
1 answer

How to work with javascript functions in an anonymous function in the browser console?

I've found an interesting method of defining functions: ! function() { function myFunction() { return returnValue; } }(); However, this function can not be called directly from the browser console, how could I achieve it?
Aslanex
  • 79
  • 2
  • 9
0
votes
1 answer

No web-console in rails 4.2

I just installed web console with rails 4.2 : gem 'web-console', :group => :development bundle install And when i restart the server passenger start When I load an error page, there is no console. Why?
Syl
  • 3,719
  • 6
  • 35
  • 59
0
votes
1 answer

How to stop caching in web console when viewing code file

Trying to debug a PHP file which has a syntax error using Firefox web console. I have set the Disable Cache option and when I change the file it does take effect immediately. However, the console displays the syntax error and when I click on the…
Mick Sulley
  • 99
  • 2
  • 11
0
votes
1 answer

Exporting data from a web browsers console to either the clipboard or a text file

I have written a function like so: function wordSnatcher(element, startsWith) { var arrOfElem = document.getElementsByTagName(element); var nwArr = []; var tmp = ""; for (var i = 0; i < arrOfElem.length; i++) { tmp =…
MddHtt13
  • 365
  • 1
  • 3
  • 10
0
votes
1 answer

Deploying Active MQ Web Console on Felix

I have a plain Felix based OSGI Environment on which I have deployed a bundle, which has an Embedded ActiveMQ Broker. I want to have another bundle deployed on the same OSGI environment, which shall have an embedded jetty on which the ActiveMQ Web…
0
votes
1 answer

Unknown jQuery variable in Firefox web-console

Accessing jQuery variable in Firefox web-console I see (form the autocomplete) a second jQuery variable; the variable looks like jQuery85448957324.. ('jQuery' followed by a random number). Initially accessing this variable gave a result that…
maioman
  • 18,154
  • 4
  • 36
  • 42
0
votes
2 answers

hawtio RSS Feed like old activemq console

Do you know if there is a similar way to have a RSS Feed for a specific activeMQ queue in Hawtio like in the old web console? If not, is there a wish list for future features?
Johan Le Lan
  • 47
  • 1
  • 8
0
votes
2 answers

Why doesn't console.table work in Firefox?

Why doesn't console.table (or certain other console methods) work in Firefox, or return an error?
Matthew Flaschen
  • 278,309
  • 50
  • 514
  • 539
-1
votes
1 answer

Why can't I change the type of `name` in Firefox web console?

In Firefox web console, why can I change the type of name2 var name2=12 undefined typeof name2 "number" name2="hello" "hello" typeof name2 "string" and not for name typeof name "string" name=12 12 typeof name "string" ?
Tim
  • 1
  • 141
  • 372
  • 590
-1
votes
2 answers

Why is this difference between `var` and `let` in firefox web console but not in node.js?

In node.js > var name = 12; > console.log(typeof name); number in Firefox's web console var name = 12; console.log(typeof name); string let name2 = 12; console.log(typeof name2); number Why is the difference between var and let in…
Tim
  • 1
  • 141
  • 372
  • 590
-2
votes
1 answer

How to update read books in goodreads as per the updated date?

I am trying to use java script to update the goodreads data using the webconsole in firefox (Inspect element). I forgot to update the read date when I added the rating for some books. It's very tedious to update the date by hand. I agree that this…
nivesh
  • 109
  • 1
  • 6
1 2 3
4