views:

138

answers:

1

I just want my GM script to do a window.alert(foo) where foo is equal to a local javascript variable within the page.

Ideas?

+2  A: 
alert(unsafeWindow.foo);
S.Mark