Search Results

1
vote

Do you validate your websites?

Yes, I validate HTML, I use -Wall when I'm writing C code, and I use the strict and warnings modules when I'm writing Perl. Why? Because I take pride in my work, and I want to do it well. IMHO, "go …
1
vote

How to add scrollbars to my HTML that disappear if the content is smaller than the limit

Swilliams gave a good answer about how to treat the symptom. But, you might want to think about the root cause too - if the content box were not constrained to a fixed size, it could shrink and/or …
0
votes

Cancel a webform submit with PHP

There's no way for PHP to stop a file upload in progress. Your PHP code isn't even started until the file upload is done, so by the time it's running, it's too late. …
10
votes

How can I extract URLs from a web page in Perl?

Have a look at HTML::LinkExtor, part of the HTML::Parse …
0
votes

How do I filter all HTML tags except a certain whitelist?

Attributes are the major problem with using regexes to try to work with HTML. Consider the sheer number of potential attributes, and the fact that most of them are optional, and also the fact that …
3
votes

Unordered lists and accessability

Navigation is basically a list of links, so marking it up as a list seems correct to me. …