Advertisement
Mariuk3

Show/Hide div

Jun 30th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(document).ready(function(){
  3. $("#bresle").on('click', function() {
  4. $("#jucatori1").hide();
  5. $("#bresle1").show();
  6. });
  7. $("#jucatori").on('click', function() {
  8. $("#jucatori1").show();
  9. $("#bresle1").hide();
  10. });
  11. });
  12. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement