Changeset 24384 in main
- Timestamp:
- 12/27/21 14:27:03 (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
adopters/nm-epht/trunk/src/main/webapps/nmepht-content/xml/html_content/dataportal/query/Index.xml
r23228 r24384 12 12 </style> 13 13 <script> 14 <!-- allows for a QM builder/result page to jump back to and open 15 a specific expandable block of selections within this page. 16 This was Steph's short term solution for choosing a new measure. 17 --> 14 18 $(document).ready(function() { 15 var equalIndex = window.location.search.indexOf(" =");19 var equalIndex = window.location.search.indexOf("show="); 16 20 if(-1 != equalIndex) 17 21 { 18 var id = window.location.search.substring(equalIndex+ 1);22 var id = window.location.search.substring(equalIndex+5); 19 23 var checkboxElement = document.getElementById(id); 20 24 if(checkboxElement)
Note: See TracChangeset
for help on using the changeset viewer.