i have a page that has a .js script inside, in the page its
<script>
Client.includeJS(
'js/scratchticket.js'
);
</script>
in this scratchticket.js
is following code
$(document).ready(function() {
...
var xxx = 100;
...
});
so i testet various codes in greasemonkey, but i cannot edit this variable that is it e.g. 200
i testet to block the scratchticket.js with adblock an paste the whole code into greasemonke script and change the var but it is not working, i dont know why the page says loading... at the time when it should do the code.
any idea how to change the variable in a other way?