javascript - Make form buttons disappear after clicking them (game) -
i had developer work on game me (so i'm not coder - rookie!), i'd add quick mod myself.....
is there simple way make each form button disappear once selected, buttons reload/display again once new round loads up?
http://www.slinkyproductions.co.uk/games/movie-hangman/
many thanks.
- scott
change buttons to
<input name="letterz" onclick="letter('z')" type="button" value="z" class="letter" id="btnz">
and add line letter() function
$("btn"+param).hide();
Comments
Post a Comment