Help with showing a hidden div in formula question.

Re: Help with showing a hidden div in formula question.

by Saoud Alzoabi -
Number of replies: 0
Thank you so very much Dominique, I really appreciate all time and effort you spend on solving our problems <3

Fortunately, I found my solution few hours before you posted an answer.

 

<script>

    $(window).on("load", function() {

        if ("{f}" == 0) {

            $("#force").show();

        };    });

</script>

<div style="display: none" id="force">

    <p>What is the force (F)?</p>

</div>

{#1}