Skip to content
Snippets Groups Projects
Commit 23b26ddb authored by Olav Morken's avatar Olav Morken
Browse files

www/resources/script.js: Add show and hide functions.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1852 44740490-163a-0410-bde0-09ae8108e29a
parent b867370c
No related branches found
No related tags found
No related merge requests found
...@@ -9,3 +9,33 @@ function SimpleSAML_focus(id) { ...@@ -9,3 +9,33 @@ function SimpleSAML_focus(id) {
element.focus(); element.focus();
} }
} }
/**
* Show the given DOM element.
*
* @param id The id of the element which should be shown.
*/
function SimpleSAML_show(id) {
element = document.getElementById(id);
if (element == null) {
return;
}
element.style.display = 'block';
}
/**
* Hide the given DOM element.
*
* @param id The id of the element which should be hidden.
*/
function SimpleSAML_hide(id) {
element = document.getElementById(id);
if (element == null) {
return;
}
element.style.display = 'none';
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment