Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Ok so I have a php page with data dynamically outputs depending on a $_GET variable ['file']. I have another page (index.php) which has a jQuery script that uses the load() function to load the php page. I have a list of links and when you click on one, it needs to change the $_GET variable to load, then refresh the load() jQuery variable. Heres a snippet:

$("#remote-files").load("data.php?file=wat.txt");
$(".link1").mousedown(function() {
 $("#remote-files").load("data.php?file=link1.txt");
});

As you can see it loads the data into a div with the ID of remote-files. Is there a better way to do this, like update the page with the new get variable instead of redefining a new load function?

share|improve this question

1 Answer

Not entirely sure what you're asking, or whether what I'm suggesting is much better, but...

function loadData(filename) {
    $("#remote-files").load("data.php?file=" + filename);
}

loadData("wat.txt");

$(".link1").click(function() {
    loadData("link1.txt");
});

That would reduce some duplication anyway.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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