how to set scrolling = "no" at the iframe podio-webform-frame? -
how can set scrolling = "no"
@ iframe podio-webform-frame?
unfortunately it's possible in fully-conforming html5 html , css properties
podio webforms' iframe attributes not customisable beforehand, can manipulate attributes on using, example, jquery.
take @ answer more info: https://stackoverflow.com/a/10083740/2904025
example marcelo's code:
$('.podio-webform-frame').on("load", function() { $('.podio-webform-frame').attr("scrolling", "no"); });