Guest User

Untitled

a guest
Jan 18th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <span class="dropdown">
  2. <a class="btn btn-mini btn-info dropdown-toggle insert-gallery" id="dLabel" role="button" data-media-id="50" data-toggle="dropdown" href="#">
  3. Add To Gallery
  4. <b class="caret"></b>
  5. </a>
  6. <ul class="dropdown-menu" role="menu" aria-labelledby="dLabel"></ul>
  7. </span>
  8.  
  9. $('.insert-gallery').on('click', function(){
  10. var media_id = $(this).data('media-id');
  11. console.log(media_id);
  12. console.log('click');
  13. });
  14.  
  15. $(document).on("click", ".dropdown-toggle", function(event) {
  16. // Ajax actions here
  17. $(this).attr("data-toggle", "dropdown").click();
  18. });
Add Comment
Please, Sign In to add comment