views:

225

answers:

1

is there any options on jeditble so when i double click my text and the textbox pops up that it highlights all of the text

+1  A: 

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

$(".editable").editable("http://www.example.com/save.php", { 
    type   : "textarea",
    select : true
});
Mika Tuupola