sbenjamin

Client:DeleteValue

Jul 27th, 2011
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function deleteGlobalValInSession(name){
  2.     jQuery.ajax({
  3.             url : 'assets/CFC/Session.cfc?method=deleteValue',
  4.             type    : 'POST',
  5.             data    : {
  6.                    name: name,
  7.                    cfctoken: Globals.get('cfctoken')
  8.                   },
  9.             dataType: 'json'
  10.     });
  11. };
Advertisement
Add Comment
Please, Sign In to add comment