Re: jQuery Ajax request to update a PHP variable

From: Walker, David <dwalker_at_nyob>
Date: Mon, 5 Dec 2011 14:44:34 -0800
To: CODE4LIB_at_LISTSERV.ND.EDU
> And I want to update 'Drawing' to be 'Cooking'  w/ a jQuery hover effect 
> on the client side then I need to make an Ajax request, correct?

What you probably want to do here, Nate, is simply output the PHP variable in your HTML response, like this:

  <h1 id="foo"><?php echo $searchterm ?></h1>

And then in your JavaScript code, you can manipulate the text through the DOM like this:

  $('#foo').html('Cooking');

--Dave

-----------------
David Walker
Library Web Services Manager
California State University


-----Original Message-----
From: Code for Libraries [mailto:CODE4LIB_at_LISTSERV.ND.EDU] On Behalf Of Nate Hill
Sent: Monday, December 05, 2011 2:09 PM
To: CODE4LIB_at_LISTSERV.ND.EDU
Subject: [CODE4LIB] jQuery Ajax request to update a PHP variable

If I have in my PHP script a variable...

$searchterm = 'Drawing';

And I want to update 'Drawing' to be 'Cooking'  w/ a jQuery hover effect on the client side then I need to make an Ajax request, correct?
What I can't figure out is what that is supposed to look like... something like...

$.ajax({
  type: "POST",
  url: "myfile.php",
  data: "...not sure how to write what goes here to make it 'Cooking'..."
});

Any ideas?


--
Nate Hill
nathanielhill_at_gmail.com
http://www.natehill.net
Received on Mon Dec 05 2011 - 17:46:16 EST