Hi...
In a website html code there is variable value e.g. x=100 which appears on website.....For just my personalizing is there any way by which i can change the value of x e.g. x=10 using greasemonkey script....
e.g.
[CODE=javascript]var x = 100;
var y = 0;
function startClock() {
if (x !== 'Done') {
x = x-y;
setTimeout("sta rtClock()", 1000);
}
if (x == 0) {
x = 'Done';
z='success';
}
startclock()[/CODE]
In a website html code there is variable value e.g. x=100 which appears on website.....For just my personalizing is there any way by which i can change the value of x e.g. x=10 using greasemonkey script....
e.g.
[CODE=javascript]var x = 100;
var y = 0;
function startClock() {
if (x !== 'Done') {
x = x-y;
setTimeout("sta rtClock()", 1000);
}
if (x == 0) {
x = 'Done';
z='success';
}
startclock()[/CODE]
Comment