Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Doc Aha

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

cross-browser way to get selection.

   1  
   2  function getSel(){
   3  var w=window,d=document,gS='getSelection';
   4  return (''+(w[gS]?w[gS]():d[gS]?d[gS]():d.selection.createRange().text)).replace(/(^\s+|\s+$)/g,'');
   5  }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS