Guest User

Untitled

a guest
Feb 25th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <button href="#" data-dropdown="drop1" aria-controls="drop1" aria-expanded="false" class="button dropdown">Order list by: </button><br>
  2. <ul id="drop1" data-dropdown-content class="f-dropdown" aria-hidden="true">
  3. <li><a href="#">This is a link</a></li>
  4. <li><a href="#">This is another</a></li>
  5. <li><a href="#">Yet another</a></li>
  6. </ul>
  7.  
  8. $('li').on('click', function(){
  9. $('button span').text($(this).text());
  10. });
  11.  
  12. <button href="#" data-dropdown="drop1" aria-controls="drop1" aria-expanded="false" class="button dropdown">Order list by: <span id="orderBy"></div></button><br>
  13.  
  14. $("li a").on("click", function() {
  15. $("button #orderBy").text($(this).text());
  16. });
Add Comment
Please, Sign In to add comment