Thanks for the explanation, Mika... that makes things a lot clearer!

Rick

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Mika Tuupola
Sent: Friday, March 09, 2007 3:55 AM
To: jQuery Discussion.
Subject: Re: [jQuery] How do I hook up the "Editable" plug-in to a MySQL DB?


On 9 Mar 2007, at 02:44, Rick Faircloth wrote:

> I don't see how to hook the "Editable" plug-in to *any* datasource  
> right now.
>
You mean you want to save the text you edit to the database? For  
jEditable first and only mandatory parameter is the URL where edited  
content is POST:ed to. For example:

$(document).ready(function() {
     $(".editable").editable("http://www.example.com/save.php";, {
         type   : 'textarea',
         submit : 'OK'
     });
});

With whis example when you edit stuff and click ok stuff gets POST:ed  
to http://www.example.com/save.php. This script should then save  
content to database. You can check examples at:

http://www.appelsiini.net/~tuupola/javascript/jEditable/

or browse example source code at:

http://svn.appelsiini.net/viewvc/jQuery_jEditable/trunk/examples/

JavaScript itself does not connect to database. You need to use some  
serverside language such as PHP, Ruby or Perl for that.


--
Mika Tuupola                      http://www.appelsiini.net/~tuupola/




_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/



_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to