Skip to content

Instantly share code, notes, and snippets.

@gazs
Created March 5, 2013 13:08
Show Gist options
  • Select an option

  • Save gazs/5090197 to your computer and use it in GitHub Desktop.

Select an option

Save gazs/5090197 to your computer and use it in GitHub Desktop.
function PriceClass(code, cont)
{
var h = code;
if (code == '0') h = 'Advanced';
else if (code == '1') h = 'HTS';
else if (code == '2') h = 'Historical';
if (cont != null)
{
cont.innerHTML = h;
}
else
document.write(h);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment