jQuery Créer une entrée cachée

$('<input>').attr({
    type: 'hidden',
    id: 'foo',
    name: 'bar'
}).appendTo('form');
LemonzDEV