Answer the question
In order to leave comments, you need to log in
How to connect the script to the console?
Why are scripts not being executed in the browser console. I call a function in the console from a script that is connected and does not work, what should I do?
Answer the question
In order to leave comments, you need to log in
When using a structure like this:
$(document).ready(function(){
function sameFunc() {
// code
}
}):
var sameFunc = null;
$(document).ready(function(){
sameFunc = function() {
// code
}
}):
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question