LyndonOHRC
Programmer
I'm just now learning bootstrap. I'm using the helper classes to design a responsive page.
Given this HTML: <span id="CommissionersTableHeadingFlagUp" class="hidden-xs glyphicon glyphicon-triangle-top">Up arrow gliph</span>
Does anyone know what property is changed when the visibility helper classes are used?
I've tried to test it's visibility:
elemVis=document.getElementById('CommissionersTableHeadingFlagUp').style.visibility
also tried: elemVis=document.getElementById('CommissionersTableHeadingFlagUp').style.display;
But both return an empty string. Is there a way to test the current visible state?
url: New Page
The goal is to toggle visibility of table "CommissionersTable" and toggle the up/down arrow gliphs in div "CommissionersTableHeading"
Want appropriate gliph displayed for the media width (media =xs hide table/display down arrow) else (show table/display up arrow) By settng onclick event in div "CommissionersTableHeading"
Lyndon
Given this HTML: <span id="CommissionersTableHeadingFlagUp" class="hidden-xs glyphicon glyphicon-triangle-top">Up arrow gliph</span>
Does anyone know what property is changed when the visibility helper classes are used?
I've tried to test it's visibility:
elemVis=document.getElementById('CommissionersTableHeadingFlagUp').style.visibility
also tried: elemVis=document.getElementById('CommissionersTableHeadingFlagUp').style.display;
But both return an empty string. Is there a way to test the current visible state?
url: New Page
The goal is to toggle visibility of table "CommissionersTable" and toggle the up/down arrow gliphs in div "CommissionersTableHeading"
Want appropriate gliph displayed for the media width (media =xs hide table/display down arrow) else (show table/display up arrow) By settng onclick event in div "CommissionersTableHeading"
Lyndon