bigform/js/bigform.js.html
tofulm 431dc0bb8c Pour l'usage : insertion dans un formulaire existant => OK
il y a meme un champ titre possible
lire le readme pour le fonctionnement
2019-12-06 12:02:37 +01:00

16 lines
390 B
HTML

<script type="text/javascript">
jQuery(function () {
bigform();
function bigform() {
$('input.bigup').bigup({}, {
fileSuccess: function (a, b) {
var html_titre = '<label><:bigform:html_titre:> <input type="text" value="" name="html_titre\[\]"/></label>';
$(html_titre).insertAfter($(b.emplacement[0]).children().children('.infos'));
}
});
}
});
</script>