Click to See Complete Forum and Search --> : Getting URL


NZ_Kiwis
05-24-2007, 10:32 PM
function fnGetId(){
var type = document.getElementsByName("country")[0].value;
window.location.href='accommodationfinder.php?type=' & type();
}
</SCRIPT>


How can I add type to the end of the URL?????

Kudose
05-25-2007, 12:39 AM
function fnGetId(){
var type = document.getElementsByName("country")[0].value;
window.location.href='accommodationfinder.php?type=' + escape(type);
}