Hi,
I have an for me tricky situation. I have a fairly large file tht is positioned inside a div that is hidden by css due to display: "none". Then I have a javascript that changes display: "none" to display:"block". Yhe javascript is working fine. but I wolud like this large page to only loade when sombody clicks to execute the the javascript and makes the nested1 div visible.
I like to include another page only when the CSS item #nested1 have display: "block"; and not if it has the value display: "none";
Is ther a way to let a PHP script get the display information from the item #nested1 in the css file and only include LargePage.php when the value is set to block.
<div id="nested1"> </div>
<?php
😕 here we like to extract som data from #nested1 located in iBoxar.CSS : confused:
if (condition 😕)
include('LargePage.php'); ?>
</div>
Many thanks
Jakob