I'm having the my-app.html which does have the app-toolbar, app-drawerlayout and etc which is loading the my menu elements(myView1.html and myView2.html).
I have iron-ajax call in myView1.html so when the response comes in the myView1.html it should navigate to myView2.html with response data came from the iron-ajax call
// Function called when the response comes from iron-ajax
function navigateToView2(data) {
window.href = "/myView2";
}
Please Help me, thanks in Advance