Advertisement
Guest User

button.js

a guest
Oct 17th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.   $(".dropdown-content a").click(function() {
  3.     $(".background-mask").show();
  4.     $(".demo-card-wide.mdl-card").show();
  5.  
  6.     $(".mdl-card__supporting-text").text(
  7.       $(this).attr("data-content")
  8.     );
  9.   });
  10.  
  11.   $(".mdl-button").click(function() {
  12.     $(".demo-card-wide.mdl-card").hide();
  13.     $(".background-mask").hide();
  14.   });
  15.  
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement