I\'m working on a mobile version of a large site. There\'s a lot of content from the full site that\'s not needed for mobile.
What is the best way to hide this? i.e
A very fast way to add or remove HTML is to use innerHTML, something like:
node.innerHTML = ''; node.parentNode.removeChild(node);
And you can place these commands in a SCRIPT tag at the end of the BODY tag.