Skip to content

Instantly share code, notes, and snippets.

@pastyrMisha
Last active December 14, 2017 14:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pastyrMisha/7f53ac5fdc63236179fbae06e9ef0836 to your computer and use it in GitHub Desktop.
Save pastyrMisha/7f53ac5fdc63236179fbae06e9ef0836 to your computer and use it in GitHub Desktop.
1 или 2 цвет блока если выибрал 1 или 2
.div_1 {
background-color: #6F8BB3;
}
.div_2 {
background-color: #F68200;
}
var div = prompt("1 или 2?");
while(div != 1 && div != 2) {
div = prompt("1 или 2?");
}
$("#div").attr ("class", "div_" + div);
alert($("#div").get(0).className);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment