0

there is a div that i want to load a url in it with a fix url. i define a variable to add my url next to that page name. but the variable is not replace . and the url broke. how can i send a url as a variable to another url

<script>
$(document).ready(function(){ 
var url = 'reservation/oneway/list.bc?bcpage=12&page=1&cat=130';
$('.load-face').load('/one-wayajax.bc?url='+url);
});
</script>

the result is : one-wayajax.bc?url=reservation/oneway/list.bc?bcpage=12&page=1&cat=130 and removed the other objects because there is two ? repeat behind together. i guess i have to use the second part as a variable

the true result should be this : ? &

one-wayajax.bc?url=reservation/oneway/list.bc&bcpage=12&page=1&cat=130

inaz
  • 1,675
  • 2
  • 14
  • 36

0 Answers0