Change Page

Change Page

BY 30 Oct 2016 Web Application Development

Hi ,

I want to change active page using by tau.changePage(to) method. My script is working and it is not giving any error but it is not changing current page.

Can anybody help me?

 

Html

<a href=”Currency.html” onclick=”goToCurrency();”>Currency</a>

Script

function goToCurrency() {      
    try {
        tau.changePage(“Currency.html”);
    
    } catch (e) {
        alert(e.message);
    }
}

Written by