I need to have a user poke at an element on a website, almost exactly like with Firebug as a developer. Does anyone know a simple way to do this in JavaScript, or a library like YUI or jQuery?
Asked
Active
Viewed 1,058 times
2
-
2The user doesn't want to install firebug? Maybe this would do the trick? http://getfirebug.com/firebuglite – camomileCase Jun 30 '10 at 03:56
1 Answers
1
with jquery
$("*").click(function(e){
// do something (eg: console.log(this);)
e.preventDefault();
return false;
});

AHOYAHOY
- 1,856
- 4
- 24
- 34