Skip to content Skip to sidebar Skip to footer

Changing The Value Of X-editable

I have a few hyperlinks that I use with x-editable. They basically represent the size of a resizable div. Now when I resize the div, I'm setting the text of the elements

Solution 1:

You need to reload the X-editable function, but before you can du that you need to destroy it like this:

$(".width-editable").editable('destroy');
$(".height-editable").editable('destroy');

I have edited your JSFiddel, please see the new one here: http://jsfiddle.net/xBB5x/9957/

Hope it helps!

Post a Comment for "Changing The Value Of X-editable"