Dear All
We are having Laserfiche forms professional 10.4 we are developing new forms , and We would like to use the footer when save to repository the footer has to be variable , which is in the form , I am very new java script and with the help of laserfiche answers I found the solution as to use the java script as
$(document).ready( function () { $('<footer style="position: fixed; bottom: 0"><p>ENTER YOUR TEXT</p></footer>').insertAfter($('.cf-formwrap')); });
But in here i need to put variable value , I created custom html , i put the variable in custom html and given the class as test and use the code
$(document).ready( function () { $('<footer style="position: fixed; bottom: 0"><p>($('.test').text());</p></footer>').insertAfter($('.cf-formwrap')); });
but unfortunately the values are not showing, in the custom html the values are showing but not in footer ,am I missing something or am I totally wrong . or I can bring the variable using ($('.#q123').val()); but that also not working
Thanks in advance