Hello.
I have added a slider inside my window. I am trying to change the opacity of the window by changing the slider value.
$('#jqxSlider').on('change', function (event) {
x = $('#jqxSlider').jqxSlider('getValue')/100;
console.log(x);
$('#jqxWindow').jqxWindow({ modalOpacity: x });
});
From the documentation I see there is a property called modalOpacity, when I change the slider, I see a change in opacity in the area outside the window.
My question, is there a way to change the opacity of the window itself?
If not, may I please request this?
Thank you.