replied on January 29, 2016
If you load the WebLink iframe string into a field (#Field50 in my example) you can take that field value and put it in an HTML field (#q49 in my example) with the javascript below. Note that your Laserfiche Forms and WebLink sites have to be in the same domain.
WebLink iframe string to load into a single line field #Field50. You probably want to hide it.
<iframe id="myframe" src="https://yoursite/WebLink/0/doc/12345/Page1.aspx" width="100%" height="600px"></iframe>
Javascript to load the field value into the custom HTML field.
$(document).ready(function (){
$( "#q49" ).html( $( "#Field50" ).val() );
})