Michael Bar-David wrote:
Sfter some searches, I understood that instead of using document.getSelection() in an extension, I should use window.content.getSelection(). But, I need to know it's length - and this JS code of the extension:
var word = window.content.getSelection();

this should be:

        var word = window.content.getSelection().toString();


alert(word.length);

alerted "undefined"

how can I get the selection's length ?

- Soyapi
--
Soyapi Mumba
http://soyapi.blogspot.com
http://searchwith.mozdev.org
_______________________________________________
Project_owners mailing list
[email protected]
http://mozdev.org/mailman/listinfo/project_owners

Reply via email to