2
I put a break point in my function javascript(F9)
and then I give F12
in the chrome
with the application open. I press a button that will call this function for example and does not stop at the break. I can’t see what each variable, parameter is being passed. How do I do it? No IE
, I can, although with the script debug "turned on" and giving those script errors, but I can. I would like to Chrome
.
How I see the value of a variable or parameter in the Chrome debug. I have thus: var Abrir modal = Function (url, title, width, height) { dialog.attr("src", url); dialog.dialog("option", "title", title); dialog.dialog("option", "width", width); dialog.dialog("option", "height", height); } then I want to know the value of the url parameter, for example. I put the mouse on top, but I can’t see anything. I can’t get the value of the parameter.
– pnet
put breakpoint within the method?
– Tobias Mesquita
Yes, I put and I want to take the value of variables or parameters and nothing.
– pnet