Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <a class="list-group-item list-group-item-action" id="list-banka" data-toggle="list" href="#list-bank" role="tab" aria-controls="home">
  2. <div class="tab-pane fade show" id="list-bank" role="tabpanel" aria-labelledby="list-home-list">
  3.  
  4. <script>
  5. $("form").submit(function (e) {
  6. //Form submitted
  7. var search = "<?php echo "list-" . $_GET["row"]; ?>"; //list-bank or list-carried
  8. var searchlink = "<?php echo "list-" . $_GET["row"] . "a"; ?>"; //list-banka or list-carrieda
  9. $(search).addClass("active");
  10. $(searchlink).addClass("active");
  11. });
  12. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement