Hello:
I have a multiple page form. In the first page the user selects from a drop-down (created from a SQL consult/Custom Element) and that creates a link that allows the user to select some more info and then proceed to the next page. However, if i go back using the back arrow of the browser or after the user submits, some information is left in the first page. Also the Custom element changes from this:
to this
I tried deactivating the site cache, but it didn't work. Also tried using javascript
with various results, none effective.
I thought it had to do with the cf_sid variable not updating properly but i checked and it is changing with every refresh. Tried to clear the cache (ctrl+F5) but didn't work either. and also with the JAT3 Clean Cache plugin.
The form itself is working fine except for that not so little problem. Thanks
I have a multiple page form. In the first page the user selects from a drop-down (created from a SQL consult/Custom Element) and that creates a link that allows the user to select some more info and then proceed to the next page. However, if i go back using the back arrow of the browser or after the user submits, some information is left in the first page. Also the Custom element changes from this:
<select id="province" class="" name="province" size="1">
<option value="--"></option>
<option value="AB"></option>
</select>
to this
<select class="" id="province" size="1" name="province">
<option value="">Please select a province</option>
<option value="">
AB - Alberta</option>
</select>
I tried deactivating the site cache, but it didn't work. Also tried using javascript
$('form').each(function() {this.reset()});
window.location.reload(true);
document.getElementById("chronoform_nomination-S").reset();
with various results, none effective.
I thought it had to do with the cf_sid variable not updating properly but i checked and it is changing with every refresh. Tried to clear the cache (ctrl+F5) but didn't work either. and also with the JAT3 Clean Cache plugin.
The form itself is working fine except for that not so little problem. Thanks