Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <h4 class="section-title">Search Player</h4>
- <div class="form-group">
- <div class="input-group login-input">
- <span class="input-group-addon"><i class="fa fa-user"></i></span>
- <input type="text" id="player" class="form-control" placeholder="Username">
- </div>
- <br>
- <button type="submit" id="playerSbmt" class="btn btn-primary pull-right">Submit</button>
- <div class="clearfix"></div>
- </div>
- <script type="text/javascript">
- $(function () {
- $('#playerSbmt').click(function() {
- var url = "http://mc-delta.com/player/";
- url += $('#player').val();
- window.location = url;
- });
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment