Forum Moderators: open
Oh, and how do you determine what's "important"?
Of course, the bandwidth will still be the same, since you'd need to download it even if it's not displayed.
I know disabling the pics can load my page faster, but that's not my objective. The whole content has to be downloaded from the website, but can a program automatically filter out the HTML stuffs that I don't want to see before displaying those I want to see on the screen? Thanks.
Ok, from the source, it starts with <form action>, ends with </form>, and <tr>, ends with </tr>. I'm really an idiot in HTML stuffs, sorry I don't really know how to describe to you guys.
PERL? How do you use it? Does it work in the background while my opera automatically refresh the website? I'm interested in this.
Thanks
You're probably looking for more of an application that strips out the part you want to see and shows you that. I haven't heard of any, and I don't think there's really enough demand for word to get around on it.
One thing you could do is create a custom stylesheet which you then ask your browser to use instead of the regular stylesheet that looks like * {display: none;
}
and then finds the specific succession of HTML tags which surround the content that you are looking for, create a selector based on this succssion with {
display: inline;
}
(or else display: block;)
for example, if the content displayed always began like this:
<Some HTML>And even<More HTML>
<p class="blieblie">
<table class="blabla"><tr><td>Some Content</td><td>That interests you</td></tr></table>
your css sheet would look like:
* { display: none; }
p.blieblie table.blabla {
display: inline;
}
Opera allows you to use your own stylesheets. Not 100% sure this would work since I've never used my own stylesheets for another webpage, but in theory I think it should.
If you can post a fragment of the HTML that comes before the part you want, maybe some nice person here will try a shot at making a stylesheet for you ;) (or maybe I'll try if I'm still here)
I've received your stickymail and I don't understand what you meant by selector. Is it like some blocks or sections? OK, I made a CSS with just the * {display: none; } and applied on the webpage, it just made everything blank. So it apparently works? How to make a selector? Is it to be saved as a CSS too?
Many thanks.