document.selection

  • Thread starter Thread starter BlackSabbath
  • Start date Start date
B

BlackSabbath

Hi from PAris

HowTo catch the selected text in a IE page without using the clipboard via
execWb(12,0) ?

something like cTxt = browser.document.selection.text...)

Thanks

BlackSabbath
 
BlackSabbath said:
HowTo catch the selected text in a IE page without using the
clipboard via execWb(12,0) ?

something like cTxt = browser.document.selection.text...)

document.selection.createRange().text

--
With best wishes,
Igor Tandetnik

With sufficient thrust, pigs fly just fine. However, this is not
necessarily a good idea. It is hard to be sure where they are going to
land, and it could be dangerous sitting under them as they fly
overhead. -- RFC 1925
 
Right

Thanks


Igor Tandetnik said:
document.selection.createRange().text

--
With best wishes,
Igor Tandetnik

With sufficient thrust, pigs fly just fine. However, this is not
necessarily a good idea. It is hard to be sure where they are going to
land, and it could be dangerous sitting under them as they fly
overhead. -- RFC 1925
 
Back
Top