Javascript examples for Browser Object Model:Window getSelection
Get selected range count and range index and content
<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>