rjp2525

Untitled

Dec 28th, 2013
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <h4 class="section-title">Search Player</h4>
  2. <div class="form-group">
  3. <div class="input-group login-input">
  4. <span class="input-group-addon"><i class="fa fa-user"></i></span>
  5. <input type="text" id="player" class="form-control" placeholder="Username">
  6. </div>
  7. <br>
  8. <button type="submit" id="playerSbmt" class="btn btn-primary pull-right">Submit</button>
  9. <div class="clearfix"></div>
  10. </div>
  11. <script type="text/javascript">
  12. $(function () {
  13. $('#playerSbmt').click(function() {
  14. var url = "http://mc-delta.com/player/";
  15. url += $('#player').val();
  16. window.location = url;
  17. });
  18. });
  19. </script>
Advertisement
Add Comment
Please, Sign In to add comment