Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <button class="btn btn-default" type="submit">Clear Browser</button>
  2.  
  3. $('button').click(function() {
  4. $.ajax({
  5. url: "",
  6. context: document.body,
  7. success: function(s,x){
  8.  
  9. $('html[manifest=saveappoffline.appcache]').attr('content', '');
  10. $(this).html(s);
  11. }
  12. });
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement