Skip to content

Instantly share code, notes, and snippets.

@akandratovich
Created March 21, 2012 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akandratovich/2145487 to your computer and use it in GitHub Desktop.
Save akandratovich/2145487 to your computer and use it in GitHub Desktop.
show/hide status messages
function info(show) {
var d = 'none';
if (show) d = '';
var xc4 = document.getElementsByClassName('Xc4');
for (var i = 0; i < xc4.length; i++)
xc4[i].parentElement.style['display'] = d;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment