I am calling a javascript from within a iframe to redirect to another url.
var new_url = "http://mysite.com/?language=en&origin="
+ origin +"&destination="+ destination + "&Date=" + date;
}
//window.location.replace(new_url);
window.top.location.href = new_url;
//window.location.assign(new_url);
purpose is to open the page out of iframe within same window so i am using
window.top.location.href = new_url;
It is working finr in IE but not in chrome and FF though not giving any error also