Created
January 14, 2019 03:02
-
-
Save JMWebDevelopment/d35ab4c9e9fc2d305b92e46d18feb375 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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