Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. $("#artic").droppable({
  2. drop: function(event, ui){
  3. if( $(ui.draggable).is("#Penguin") && $("#" + animalArray[selectedAnimal]).is("#Penguin")) {
  4. $("#feedback").text("He looks ready to chillax.");
  5. $("#Penguin").hide();
  6. selectRandomAnimal();
  7. }
  8. if( $(ui.draggable).is("#Seal") && $("#" + animalArray[selectedAnimal]).is("#Seal")) {
  9. $("#feedback").text("He looks ready to chillax.");
  10. $("#Seal").hide();
  11. selectRandomAnimal();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement