DO NOT USE! THIS IS AMBIGUOUS. You might be looking for [web-inspector].
Questions tagged [inspect]
610 questions
0
votes
3 answers
how to block or protect ajax post values from browser inspect element
function updateR()
{
$.ajax({
type: "POST",
url: "update.php",
data: { surprize: '12345678910', dpoint: point, dlevel: level }
}).done(function( msg ) {
// alert( "Data Saved: " + msg );
});
…

Nasir Aliyev
- 116
- 7
0
votes
3 answers
Is it possible to look at received queue messages with the Tibco queue client?
We're using a Tibco client implementation of the JMS API. We have a MessageListener with an onMessage() implementation.
Is there a way with the Tibco client to inspect past (received) messages in the queue? (I realise this totally ignores the…

hawkeye
- 34,745
- 30
- 150
- 304
0
votes
3 answers
Inspecting a hash
When I want to debug the following hash, it returns try2test2.
dictionary = {
"test" => 2,
"try" => 2
}
puts dictionary
# => try2test2
Are there any other ways to do it so that it will give you the full list like {'test': 2, 'try': 2}?

tipsywacky
- 3,374
- 5
- 43
- 75
0
votes
1 answer
No HTTP request is performed at Google Maps web site when it displays autocompletable values. How is it possible?
I am using Firefox and Firebug in order to understand and learn how AJAX works. I am "inspecting" the Google Maps web site and when I move to the search input field entering some names then it is displayed a list of autocompletable values. However,…

user502052
- 14,803
- 30
- 109
- 188
0
votes
1 answer
inspect stack in assembly
I am pushing some int value in inline-assembly:
_asm
{
mov eax,i3
push eax
mov eax,ii
}
Later I retrieve this value doing pops:
_asm
{
pop eax
mov ii,eax
pop eax
mov i3,eax
}
What I'd like to inpect my stack…

user1231247
- 193
- 1
- 8
0
votes
3 answers
How to know from inside a module, during run time, which script has called a function in it
I have a module in python, and based on the script that has called a function in it, I want to take a decision inside that module.
So if we have 2 file file1.py and file2.py, both import the module testmod and call a function in it. Inside the…

attaboyabhipro
- 1,450
- 1
- 17
- 33
0
votes
4 answers
expose unknown JavaScript object methods from third-party code
I am looking for a way to expose the type and methods of an unknown JavaScript object.
I am implementing third-party code that has limited documentation for their methods, so I do not have access to any documentation that would tell me what sort of…

crmpicco
- 16,605
- 26
- 134
- 210
0
votes
1 answer
inspect attributes of object python
I have an object in python like . Now I want to see all the attributes of the person like I have FirstName, LastName and title of the person. What I would like to get is
{'FirstName':'Anna', 'LastName': 'Perry',…

Sadiksha Gautam
- 5,032
- 6
- 40
- 71
0
votes
2 answers
python inspect.getargspect
Imports a module and then goes through the module's namespace to find any functions (you may assume any object with a call() method is a function) and print the names of the functions and their arguments, in the same way as it might appear in a def…

Python_Woo
- 21
- 1
- 2
- 5
0
votes
2 answers
I can't see my script in Scripts tab in Chrome
When I inspect my extension's page I can't see my script in Scripts tab in Chrome. My script it's just a hello world and I've even created a .js file and included it with src attribute but it still doesn't show.
-1
votes
1 answer
How should I get Chrome element info through Python?
When I right-click part of a webpage in Chrome and select "Inspect," I get the text I need under the "Elements" tab of the "Developer tools" (accessed through F12).
How can I get that same text with Python please? (I'm very new to Python but not…

Noam Chomsky
- 9
- 2
-1
votes
1 answer
service worker doesn't seem to work for Chrome extension
I'm following this tutorial about creating a popup demo Chrome extension. I literally copied all the codes in correct files inside correct paths but the code in background.js doesn't seem to work. I got the HTML mini page when I clicked on the…

Cassie Nguyen
- 39
- 4
-1
votes
1 answer
Text underneath the footer does not go away Wordpress
I have been trying to remove some texts that read "Home About us Contact" right below my footer. I've checked the widgets and nothing is showing up from there that relates to this. I've been trying to use Additional CSS on WordPress to hide it and…
-1
votes
1 answer
HTTP GET request is getting blocked
I'm working on creating a simple website with a local server, but whenever I send a GET request, the request keeps getting blocked. I'm currently working on Firefox, but I get the same issue when running on Chrome, so I don't think that it is a…

Steve Pulse
- 59
- 1
- 8
-1
votes
1 answer
Check that a variable value is an instance of any class
How to check properly that a variable value is an instance of any class?
For example:
class Foo:
pass
isinstance_of_any_class(isinstance) # Return False
isinstance_of_any_class(Foo) # Return False
isinstance_of_any_class(Foo()) # Return…

Nick Vee
- 621
- 2
- 7
- 17