Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(document).ready(function() {
  3. $('input').on('click', function() {
  4. $.ajax({
  5. url: "{{ url_for('dashboard') }}",
  6. method: "POST",
  7. data : JSON.stringify({
  8. matched : $('#match').val(),
  9. ignore : $('#ignore').val(),
  10. username : $('#username').text()
  11. }),
  12. contentType: 'application/json;charset=UTF-8',
  13. success: function (response) {
  14. window.location = "{{url_for('chatbox', username='John')}}";
  15. }
  16. });
  17. });
  18. });
  19. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement