JQ issue
I don't want to flood the forums with this topic, but it remains a pressing issue for me.
I am using:
- Pretty Tracker (NewtrackerItem page, tracker page creator, and pretty template)
I am trying to use JQ on the template page to manipulate some DIVs
Example:
NOTES:
All I want to do it when #f_14 has a null value, hide the "NOTES" DIV. Simple right?
Currently I am able to hide the DIV, but even when there is data in the field, it remains hidden.
Here is my actual code:
Copy to clipboard
{DIV(id="status")}Status Update: {BOX(class="MAIN_BOXES" id="status_box")}{$f_62} {BOX} {DIV}
and here is my JQ:
{JQ()}
if (!$("#ins_14").val()) {
$("#release").hide();
}
{JQ}
#release is the id of the DIV
I am assuming that the problem is reaching the data from the tracker to the template.