JSFiddle - React, Tailwind, and code Playground

by niklasvh

HTML

Search: Quotes of the Month for May

JavaScript

$(document).ready(function() {
    $("body").click(function(){
         var s = window.getSelection();
        s.modify('extend','backward','word');        
        var b = s.toString();
        
        s.modify('extend','forward','word');
        var a = s.toString();
        s.modify('move','forward','character');
         alert(b+a);
        
    });
});