Skip to content

Instantly share code, notes, and snippets.

@JMWebDevelopment
Created January 14, 2019 03:02
Show Gist options
  • Save JMWebDevelopment/d35ab4c9e9fc2d305b92e46d18feb375 to your computer and use it in GitHub Desktop.
Save JMWebDevelopment/d35ab4c9e9fc2d305b92e46d18feb375 to your computer and use it in GitHub Desktop.
jQuery( function() {
$( ".sports-bench-playoff-modal" ).dialog({
autoOpen: false,
show: {
effect: "blind",
duration: 1000
},
hide: {
effect: "explode",
duration: 1000
}
});
$( ".playoff-modal-button" ).on( "click", function() {
var modalID = $(this).attr("ID").replace("checkbox_", "")
$( "#series-" + modalID ).dialog( "open" );
});
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment