Is there a way to apply a simple class tag to a jeditable input field? The developer's instructions on their website () suggest using the following code snippet under "How to style elements?":
$('.editable').editable('http://www.example.com/save.php', {
cssclass : 'someclass'
});
However, the issue is that this code will add the class to the form
tag rather than the input
itself.