Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<input type="button" name="b1" value="Button 1" onClick="yourFunction(1);">
<input type="button" name="b2" value="Button 2" onClick="yourFunction(2);">
<input type="button" name="b3" value="Button 3" onClick="yourFunction(3);">
function myFunction(bn) {
if (bn == 1) {
// DO SOMETHING FOR BUTTON 1
}
if (bn == 2) {
// DO SOMETHING FOR BUTTON 2
}
if (bn == 3) {
// DO SOMETHING FOR BUTTON 3
}
}