And one more problem. I would like to add some js but some functions doesn’t work. Even simlpe thhings like below:
function before_submit() {
document.getElementById(“wdform_3_elementform_id_temp”).value=”abc”;
}
or
function before_submit() {
var valueID = $_GET(‘idvar’);
alert(valueID);
}
idvar in above function is a variable sent in page url.
Above are very simple functions and if they were working I could try to send values of db the fields in url and then put them into form elements.
Any help would be appreciated.