Guest User

Untitled

a guest
Nov 22nd, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. function CheckSettings() {
  2.  
  3. $.ajax({
  4. type: 'POST',
  5. url: 'urlforsettingsphp',
  6. data: form_data,
  7. success: function(data)
  8. {
  9. $("#settings").html(data);
  10. }
  11. });
  12. }
  13. CheckSettings();
  14.  
  15. $( document ).ready(function() {
  16. $("#newlogintext").on("keyup", function(){
  17. alert("test");
  18. });
  19.  
  20. <div class="settings">
  21. <b> General Settings </b>
  22. <br>
  23. <p>New login:</p> <input id="newlogintext" type="text" name="newlogin" />
  24. </div>
Add Comment
Please, Sign In to add comment