Is there a command to not display images for the whole page in HTML? Like a "images = no" type of thing. Or better yet, is there a way to command a SPECIFIC frame in a frameset (or the whole frameset) to not display or load images? THANK YOU for your time!
Not HTML, but a simple piece of CSS in an HTML page will do: <style type="text/css"> img {display:none;} </style> As far as frames, generally, you are stuck with what you pull in. In a case like that, it's better to use cURL or another "import" feature.