uawdijnntqw1x1x1
IP : 216.73.216.90
Hostname : webm001.cluster110.gra.hosting.ovh.net
Kernel : Linux webm001.cluster110.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
etiennec
/
www
/
b9da6
/
..
/
tmp
/
..
/
oldsite
/
prive
/
javascript
/
..
/
javascript
/
jquery.autosave.js
/
/
/** * autosave plugin * * Copyright (c) 2009 Fil (fil@rezo.net) * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * */ /* * Usage: $("form").autosave({options...}); * to use with SPIP's action/session.php */ (function($){ $.fn.autosave = function(opt) { opt = $.extend(opt,{ confirm: false, confirmstring: 'Sauvegarder ?' }); $(window) .bind('unload',function() { $('form.autosavechanged') .each(function(){ if (!opt.confirm || confirm(opt.confirmstring)) { var contenu = $(this).serialize(); $.post('spip.php', { 'action': 'session', 'var': 'autosave_' + $('input[name=autosave]', this).val(), 'val': contenu }); } }); }); return this .bind('change keyup', function() { $(this).addClass('autosavechanged'); }) .bind('submit',function() { $(this).removeClass('autosavechanged'); }); } })(jQuery);
/home/etiennec/www/b9da6/../tmp/../oldsite/prive/javascript/../javascript/jquery.autosave.js