Found an Interesting jQuery Plugin
I found this jQuery plugin which is interesting to me. It’s called Editable and it can convert any text on a web page to a form element. I think this is a very useful plugin for use with PHP or other server-side script languages since it enabled admin to change the content directly on the page and accept the changes to the database. In fact, I used innerHTML Javascript property before I found this plugin in order for me to edit directly onto a simple web app created during the PHP class. My first attempt was to replace text with input text filed after clicking the mouse and retain the value to the text field. It’s easy to copy the corresponding text into the newly created text field using PHP. After I clicked the text that was supposed to change to text field, it successfully changed but it didn’t focus on the text field. I wanted it to be auto-focused once the text was clicked and changed to the form element. This plugin solved this problem. It also provides an easier method to apply this effect, just like jQuery. This makes easy for me to develop web forms and web applications.
There are no posts related to Found an Interesting jQuery Plugin.