jQuery - Popup window

0 votes
159 views
added Oct 31, 2018 in jQuery by LC Marshal Captain (25,790 points)
// social share popups
  $(".share a").click(function(e) {
    e.preventDefault();
    window.open(this.href, "", "height = 500, width = 500");
  });

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...