Created
March 21, 2019 06:29
-
-
Save thecodepoetry/5b04a76f71163a66ad2cb90aab06087f to your computer and use it in GitHub Desktop.
Main menu on click tracking
This file contains hidden or 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
| <script type="text/javascript" > | |
| jQuery(document).ready(function($) { | |
| $('.dt-my-button a').on("click", function(){ | |
| alert("dt-my-button menu was clicked."); | |
| }); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment