I am using Oracle Application Express (APEX) where I have created a Report Region and as part of the title of that I region, I have entered the following:
<div id="abc" style="font-weigh:bold;font-size:18px;"></div>
In the region source, I have my required SQL report query.
I am attempting to use jQuery so that I can hide and show this region based on div id value of "abc". When I attempt to use $("#abc").show();
or $("#abc").hide()'
, nothing happens from the looks of it (it can't find this div id?).
Am I doing something wrong or is it not possible when using an APEX SQL report region?