How to redirect to another page and call a Function there on Angular ng-click
PHP Snippet 1:
<a href="home.php?setting=setup">home</a>
PHP Snippet 2:
if (window.location.indexOf('setting') != -1) {
settingManage('setup-guide');
}
<a href="home.php?setting=setup">home</a>
if (window.location.indexOf('setting') != -1) {
settingManage('setup-guide');
}