Using actions in href like this "href='lang.php?addlanguaje'"

Using actions in href like this "href='lang.php?addlanguaje'"

I have this..
    <li><a href="<?php bloginfo('url)/lang.php?action=chglang" >Castellano</a></li>
 my lang.php is:

<?php
$action = $_GET['action'];
if($action == "chglang"){
//Do something
}
?>

When I click to href i get a etern loading message and I get this javascript error "j.data("page") is undefined".
My lang.php works fine but I get this etern loading message and I don't know why...

Thanks in advance.