08.07.2019, 07:40
You can access any HTML properties from custom JavaScript (Scripting > Tools > Edit custom JavaScript).
You might have to use additional classes and change the selector if you have have several iframes and you need to disable scrollbars only on one of them.
Code:
$(function() {
$('iframe').prop('scrolling', 'no');
});
You might have to use additional classes and change the selector if you have have several iframes and you need to disable scrollbars only on one of them.