jQuery live preview script helps the user to preview their entered information in the site or in the comment box before finally submiting their information to the site. Here is sample jQuery script : <script> $(“document”).ready(function(){ $(“#live1”).keyup(function(){ $(“#live_pre1”).html($(this).val()); }); </script> ….. Read More >>>>
Continue Reading »JQUERY
Jquery Inline Editor
Do you want to implement Jquery inline editor in your project? so here is the simple steps to implement jquery inline editor in your project. Create two php files inline.php and save.php, where inline.php has jquery library, jquery function and html….. Read More >>>>
Continue Reading »