Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <div class="dropdown">
  2. <button class="dropbtn">Phone</button>
  3. <div class="dropdown-content">
  4. <a href="Subpage.html#iphone" onclick="itemChoice('iphone')">iPhone </a>
  5. <a href="Subpage.html#Samsung" onclick="itemChoice('Samsung')">Samsung</a>
  6. <a href="Subpage.html#xiaomi" onclick="itemChoice('Xiaomi')">Xiaomi</a>
  7. <a href="Subpage.html#HTC" onclick="itemChoice('HTC')">HTC</a>
  8. </div>
  9. </div>
  10.  
  11. var item;
  12. function itemChoice(choice){
  13. item = choice;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement