This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| .skipto { | |
| position: absolute; | |
| top: -10000px; | |
| padding: .5rem 1em; | |
| background-color: #000; | |
| color: #fff; | |
| z-index: 1000; | |
| } | |
| .skipto:focus { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div aria-label="Page Loading" id="loadWrap" role="complementary" style="display: none;"> | |
| <!-- Loading SVG goes here --> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Parse parameters in URL | |
| $.urlParam = function(name){ | |
| var results = new RegExp('[\?&]' + name + '=([^&#]*)').exec(window.location.href); | |
| var checkNull = results == null ? '' : results[1] || 0; | |
| return checkNull; | |
| } | |
| // Create hidden input elems and add them to form | |
| function addFormElem(paramName, fieldName) { |