hi there,
basically I have a link like so:
<a href="file.php?value=this&something=so&please=help">special link</a>
And when I click it, I want to be able to easily refer to the variables.
So for example something like
$(document).ready(function){
$('a').click(function(){
var myvalue = $(this).attr('href........
/// and thats as far as I know!
return false;
});
});
How do I access those variables?