vote up 0 vote down star

I'm using FF 3.5.3 on Windows Vista.

This is my (edited for shortness) bookmarklet:

javascript:(function(){
var text = window.content.getSelection().toString();
alert(text);
})();

Works, but not on gmail.com. Probably due to dynamicly generated content.

I'm aware of this workaround, but it only works for Firefox extensions.

flag

1 Answer

vote up 1 vote down check

Gmail using frames. Try:

document.getElementById('canvas_frame').contentWindow.getSelection().toString();
link|flag
Great! That solved it! – jamting Oct 15 at 15:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.