Hello guys! I've been trying to pull docs from Weblink into an iframe and have been successful in doing so as long as i manually type in the contract number (q1) that gets looked up from a table and retrieves a link that then gets put into a field (q3), then uses that to populate that iframe(q4).
What i want to be able to do is pass a value through the URL so you dont have to manually type in the value for the look-up. Whenever i do that the iframe never gets populated with the image.
Any ideas?
$(document).ready(function() { setTimeout(function() {},5000); $('#q3 input').change(function() { var Link = $('#q3 input').val() $('#q4 iframe').attr('src',Link); }); });
Thanks!