Jeditable - select all text after double click

are there any options in jeditble, so when i double click on the text and a text box appears that selects all the text

+7
jquery jeditable
source share
2 answers

Use the select parameter. True means select (select all). False is the opposite.

$(".editable").editable("http://www.example.com/save.php", { type : "textarea", select : true }); 
+18
source share

for doubleclick:

 $(".editable").editable("http://www.example.com/save.php", { type : "textarea", event : "dblclick", select : true }); 
+2
source share

All Articles