Created
April 30, 2021 16:00
-
-
Save Bijesse/e753ec612c9dba5353c54239db66c2b9 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=e753ec612c9dba5353c54239db66c2b9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Multiple Conditions Practice</title> | |
</head> | |
<body> | |
<input id="year"> | |
<button id="class-name">Year you will graduate</button> | |
</body> | |
</html> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"enabledLibraries":["jquery"],"hiddenUIComponents":["console"]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("#class-name").click(function() { | |
var year = $("#year").val(); | |
if(year === "2019") { | |
alert("Senior"); | |
} | |
else if(year === "2020"){ | |
alert("Junior"); | |
} | |
else if(year === "2021"){ | |
alert("Softmore"); | |
} | |
else if(year === "2022"){ | |
alert("Freshman"); | |
} | |
else{ | |
alert("You are not in High School"); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment