Is it possible to change the attributes of the css @page rule via jQuery (jscript)? What I need is to switch between different @page configurations:
option 1:
@page {
size: A3;
margin: 0;
}
option 2:
@page {
size: Letter;
margin: 20;
}
Since these css attributes are not linked to any dom alements, we cannot change them via jQuery .css() method.
Any suggestions?
Thanks