Get selected range count and range index and content - Javascript Browser Object Model

Javascript examples for Browser Object Model:Window getSelection

Description

Get selected range count and range index and content

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript">
    window.onload=function(){//w  ww.  j av a  2 s . c  o m
window.find("I am");
var sel = window.getSelection(),
    frag = sel.rangeCount > 0 && sel.getRangeAt(0).cloneContents();
    console.log(frag && frag.querySelectorAll("b").length > 0);
}

      </script> 
   </head> 
   <body>
       Hello test, 
      <b>I</b>
       am in bold.  
   </body>
</html>

Related Tutorials