PHP Classes

Just tested this against the following JS function and get an...

Recommend this page to a friend!

      PHP Minify JS, CSS, PHP and HTML  >  All threads  >  Just tested this against the...  >  (Un) Subscribe thread alerts  
Subject:Just tested this against the...
Summary:Package rating comment
Messages:1
Author:Alan B
Date:2021-03-26 19:44:23
 

Alan B rated this package as follows:

Utility: Insufficient
Consistency: Not sure
Documentation: Not sure
Examples: Not sure

  1. Just tested this against the...   Reply   Report abuse  
Picture of Alan B Alan B - 2021-03-26 19:44:23
Just tested this against the following JS function and get an error:

//---------------------------------------------------------------------------
function doShowHideTab(tabTitle, show) {
if ( show ) { /* abc*/
removeClassName('.tabby_'+tabTitle.replace(/ /g,'_'), 'hidden');
removeClassName('.tabbySpacer_'+tabTitle.replace(/ /g,'_'), 'hidden');
}
else {
addClassName('.tabby_'+tabTitle.replace(/ /g,'_'), 'hidden');
addClassName('.tabbySpacer_'+tabTitle.replace(/ /g,'_'), 'hidden');
}
}