discomrade
2024-03-14 15:55:49 +01:00
committed by Zankaria
parent 3ac86a074a
commit 43973862dd
6 changed files with 81 additions and 7 deletions
+12
View File
@@ -0,0 +1,12 @@
/*
* mod_snippets.js
*
* Javascript snippets to be loaded when in mod mode
*
*/
function populateFormJQuery(frm, data) {
$.each(data, function(key, value){
$('[name='+key+']', frm).val(value);
});
}