i apply this method to a <textarea></textarea> element but i would like to return the html/text selected by the user.
$('.wysiwyg textarea').live('select',function(text){
console.log(text);
});
How can i do that using this method?
|
i apply this method to a
How can i do that using this method? |
|||||
|
|
You can use this :
and finally bind the function accordingly This should be enough to get you started http://jsfiddle.net/TXQmC/11/ its kinda late here so i only made the complete binding for firefox since is the one u using. |
|||||||||||||
|
|
Found some useful code here: http://mark.koli.ch/2009/09/use-javascript-and-jquery-to-get-user-selected-text.html
So you can do:
As seen here: |
|||
|
I didn't want to get the empty strings returned from some browsers, so I spent a few hours and updated the selection function. Tested to work with IE, Chrome, Firefox, Safari, Opera. Really wish jQuery had this built in so I wouldn't have to mess with it.
|
|||
|
|