How do I get the url of the anchor into the .load argument? My first instinct is to use a variable, obviously, but I have no idea how to extract the url of the anchor and set it as var URL, or if I can use it as an argument in .load().
I've never used the css-tricks community as a resource before, so let's see what you guys can do. :D
var path = $(\"a\").attr(\"href\"); $(\"a\").click(function(){ $(\"#column-content\").load(path); });
:( Didn't work. I just ended up simplifying and minimalizing the design of the wiki, and then linking to it from an iframe in a wordpress page. Works fine. Thanks though, I'm gonna have to find a way to put this $("a").attr("href"); bit of code to good use. ;)
Let's say I wanna AJAXify my Mediawiki installation by using jQuery:
How do I get the url of the anchor into the .load argument? My first instinct is to use a variable, obviously, but I have no idea how to extract the url of the anchor and set it as var URL, or if I can use it as an argument in .load().
I've never used the css-tricks community as a resource before, so let's see what you guys can do. :D
var path = $("a").attr("href");
then
$("a").click(function(){
$("#column-content").load(path);
});
I didn't test either, but that's the theory.
:( Didn't work. I just ended up simplifying and minimalizing the design of the wiki, and then linking to it from an iframe in a wordpress page. Works fine. Thanks though, I'm gonna have to find a way to put this $("a").attr("href"); bit of code to good use. ;)