1
vote
How to apply a line wrap/continuation style and code formatting with css
If you want it to be unambiguous, you'll have to add markup. I'd suggest using an <ol> with one list item per line of code, because that way you get line numbering for free. If this is too mu …
3
votes
Removing Javascript from HREFs
You'll have to use a whitelist of allowed protocols to be completely safe. If you use a blacklist, sooner or later you'll miss something like "telnet://" or "shell:" or some exploitable browser-spe …
0
votes
What is the best way to insert HTML via PHP ?
Something I wish I'd known when I first started doing PHP: Keep your heavy-lifting program code as far away from your HTML output as possible. That way they both stay in large, fairly contiguous, r …
1
vote
html - scrollbar jump by itself
There are a number of things that can be causing this.
You clicked on a hyperlink with a href of "#", which will cause most browsers to scroll to the top of the page,
There's …
0
votes
Appropriate use of DL / DD ?
You're right in that it shouldn't be used like that. The only reason I can think of for the designer using them is that the <dd> tag is indented in most browsers. If they're over …
9
votes
How to tell if a DOM element is displayed?
From a quick test in Firefox, it looks like the size and position properties (clientWidth, offsetTop etc.) all return 0 when an element is hidden by a parent being display:none.
…
3
votes
Can I specify a delay before the browser raises “rollover” event?
One solution that comes to mind, there may be better ways though:
Make the onmouseover call the function via a setTimeout delay
Inside the function, …
6
votes
Why are cellspacing and cellpadding not CSS styles
mat already answered, but just for completeness:
padding → cellpadding
border-spacing → cell …
0
votes
Make html validation part of build cycle
If you've got the HTML files in source control like SVN or Git, you can use a pre-commit hook script to run client-side validators on them. Or if you're feeling adventurous, you could use that meth …
0
votes
Do you generate nicely formatted HTML?
Formatted, yes. Nice... rarely.
Every time I've tried to make generated HTML readable it's turned the generating code into a complete mess. I still try to do it, but it takes a lot of effor …
4
votes
Is it possible to put text on 3d button in HTML ?
Make the button a background image:
<style>
div.button a {
display: block;
width: /* image width */;
line-height: /* image height */;
text-align: center;
b …
0
votes
What is the easiest or fastest way to make CSS render the same in all browsers
You're asking the wrong question, because here's the only way to answer that:
<!DOCTYPE html>
<html>
<head>
<style>* { background: #fff }</style>
< …
0
votes
Load JSON at runtime rather than dynamically via AJAX
JSON on its own does nothing; you can't just use <script> to include it because it'll create an object that gets assigned to... nowhere. You'll have to modify it - either put it …
4
votes
How to store arbitrary data for some HTML tags
Why not make use of the meaningful data already there, instead of adding arbitrary data?
i.e. use <a href="/articles/5/page-title" class="article-link">, and then you can …
0
votes
How does the location of a script tag in a page affect a javascript function that is defined in it?
Javascript's scoping rules are similar to perl - you can call any function at the current or any higher scope level. The only restriction is that the function has to be defined at the time you call …
