Guest User

Untitled

a guest
Jan 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $.ajaxSetup({
  2. cache: true,
  3. jsonpCallback:function(){
  4. var key = this.data;
  5. var h = 0;
  6. for (var i=0; i < key.length; i++) {
  7. h = (h + (key.charCodeAt(i)*i)) % 10000;
  8. }
  9. console.log(h,key);
  10. return '_' + h;
  11. }
  12. });
Add Comment
Please, Sign In to add comment