href with parameters

Solutions on MaxInterview for href with parameters by the best coders in the world

showing results for - "href with parameters"
Brady
05 Aug 2019
1function func(){	
2	var SchoolId  = 0;
3	window.location.href = "school_info.aspx?edit_school=true&school=" + SchoolId;
4}
Masie
03 Feb 2019
1<!DOCTYPE html>
2<html>
3<body>
4<a onclick="func();">Click Here</a>
5</body>
6</html>