vote up 0 vote down star

Dupicate of: JQuery AJAX Return Not Working (same author)

Dear All I have doubt in integrating php and jquery,Let i explain the Steps I done

I have mainFile is MyFile.html and ajax call file is ajax.php .

ajax.php function is send the links to myFile.html as

<a href="Link.php?action=Function"></a>.

    echo "<a href Link.php?action=Delete";

When i Click the Return Link from MyFile.html[above]

Its not working .I need how to Modify the equivalent code from JQuery to Work correctly in Myfile.Html.My Motivation is ajax.php return Link Should work in Html. Any idea.

flag

78% accept rate
Duplicate: stackoverflow.com/questions/368074/… – George Stocker Dec 15 '08 at 11:56

closed as exact duplicate by Greg Dec 15 '08 at 12:13

1 Answer

vote up 0 vote down check

Your myfile.html should have a link such as:

<a href="#" id="get-links">Load links by ajax</a>
<div id="ajax-target"></div>

And javascript like:

$("#get-links").click(function(){
    $("#ajax-target").load("ajax.php");
    return false; // prevent default click behaviour
});

Finally ajax.php would look something like:

<?php
    // some conditions or logic here
    // return something
    echo '<a href="link.php?action=&amp;delete">delete link</a>';
?>

If you post a link to your particular problem it will be easier to offer help in the right context. The above should be enough for a simple working example though.

link|flag

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