Hello I'm doing this to add a string after a div in an html page with jquery:

<a href="javascript:void(0);" onclick="PrependItemsToList();">Prepend items</a>   

<script type="text/javascript">
function PrependItemsToList()
{       
    $("#content_gallery").prepend($("<li></li>").text("prepend() item"));

}
</script> 

Now I need to do it server side, any idea on how to implement it in php? I found phpquery but didn't find good docs about it.

link|improve this question

50% accept rate
This needs a bit more info. On server side you can just, you know, put the text there when you generate the page, or are you fetching the page from somewhere else? – Juhana Sep 16 '11 at 22:32
The page is already existing, let's say I have a page one.html and I want to "prepend" on it a string from a php script. – luca.violino Sep 16 '11 at 22:37
Do you mean prepend on click or before the page loads? – stevether Sep 16 '11 at 22:38
I mean prepend on click. – luca.violino Sep 16 '11 at 22:40
feedback

1 Answer

So you're saying you want to do an AJAX call that returns HTML to be prepended to your content_gallery div?

<a class="prependLink" href="#">Prepend items</a>   

<script type="text/javascript">
function PrependItemsToList()
{       
    var url="yourpage.php";
    $.ajax(url, {
      success: function(data, textStatus, jqXHR){
        $("#content_gallery").prepend(data);
      });
    });
}

$('.prependLink').click(function(e){
  PrependItemsToList();
  e.preventDefault();
});

Of course, this approach is pointless if you aren't loading any information that isn't context-sensitive (ie. you pass some parameters to your remote page through your ajax call).

Posting more information will help us better answer your question.

link|improve this answer
What I want to do is to add a line of code after content_allery div when i click on a link, and I want to save this change on the page on server. I hope it's more clear. – luca.violino Sep 16 '11 at 22:58
You want to modify the DOM of of an HTML page using JavaScript, and then save it to your server... using JavaScript? – Jonathan Wilson Sep 17 '11 at 1:51
No, I want to modify the DOM of an HTML page using PHP to write changes on the server, can you help me? The JS code I posted is just to explain what I'd like to do in PHP. Thank you – luca.violino Sep 17 '11 at 7:47
You would need to pass information to your php file via the ajax call (stuff it in the data property of the $.ajax options object). Then your php file would have to run a database query that inserts a record into your database, assuming that's what you have in mind. For that you'll need MySQL (or equivalent). See here for some good starter code. – Jonathan Wilson Sep 17 '11 at 11:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.