935
votes
38answers
423k views

RegEx match open tags except XHTML self-contained tags

I need to match all of these opening tags: <p> <a href="foo"> But not these: <br /> <hr class="foo" /> I came up with this and wanted to make sure I've got it right. I am ...
613
votes
90answers
70k views

Why not use tables for layout in HTML? [closed]

It seems to be the general opinion that tables should not be used for layout in HTML. Why? I have never (or rarely to be honest) seen good arguments for this. The usual answers are: It's good to ...
312
votes
33answers
225k views

Href for JavaScript links: “#” or “javascript:void(0)”?

When building a link that has the sole purpose to run JavaScript code, is it better to <a href="#" onclick="myJsFunc();">Link</a> or <a href="javascript:void(0)" ...
224
votes
22answers
126k views

How to align checkboxes and their labels consistently cross-browsers

This is one of the minor CSS problems that plagues me constantly. How do folks around StackOverflow vertically align checkboxes and their labels consistently cross-browser? Whenever I align them ...
205
votes
14answers
79k views

Comparison between Corona, Phonegap, Titanium [closed]

I am a web developer and I want to move my web products to iPhone. One of the products is like Google Maps: show map on the phone screen, you can drag or resize the map and view some information that ...
191
votes
3answers
45k views

Change an input's HTML5 placeholder color with CSS

Chrome supports the placeholder attribute on input[type=text] elements (others probably do too). But the following CSS doesn't do diddly squat to the placeholder's value: <style> ...
191
votes
9answers
19k views

Why don't self-closing script tags work?

What is the reason browsers do not correctly recognize: <script src="foobar.js" /> // self-closing script tag Only this is recognized: <script src="foobar.js"></script> Is it ...
180
votes
15answers
196k views

CSS: semi-transparent background, but not text

Is there a way in CSS to make the background of an element semi-transparent, but still have the text of the element non-transparent? (Without separating the text and background in two elements ...
177
votes
8answers
159k views

jQuery document.createElement equivalent?

I'm refactoring some old JavaScript code and there's a lot of DOM manipulation going on. var d = document; var odv = d.createElement("div"); odv.style.display = "none"; this.OuterDiv = odv; var t = ...
172
votes
16answers
38k views

When to use IMG vs. CSS background-image?

In what situations is it more appropriate to use an HTML IMG tag to display an image, as opposed to a CSS background-image, and vice-versa? Single-reason answers are welcome, but I'm hoping ...
160
votes
6answers
185k views

How to center DIV in DIV?

I'd like to ask you if anyone know how to horizontally center DIV in DIV with CSS ( if it's possible at all ). Outer DIV has 100%: <div id="outer" style="width:100%"> <div ...
156
votes
20answers
4k views

Are fluid websites worth making anymore?

I'm making a website now and I am trying to decide if I should make it fluid or not. Fixed width websites are much easier to make and also much easier to make them appear consistent. To be honest ...
149
votes
14answers
30k views

What are valid values for the id attribute in HTML?

When creating the id attributes for HTML elements, what rules are there for the value?
144
votes
20answers
101k views

Simulators/emulators for mobile browser testing?

I'm doing development of a web application aimed at mobile devices. What software can I use to simulate/emulate mobile browser environments? I'm specifically looking for a way to test on Mobile ...
140
votes
18answers
21k views

Frame Buster Buster … buster code needed

Let's say you don't want other sites to "frame" your site in an <iframe>: <iframe src="http://yourwebsite.com"></iframe> So you insert anti-framing, frame busting JavaScript into ...
133
votes
13answers
46k views

When is a CDATA section necessary within a script tag?

Are CDATA tags ever necessary in script tags and if so when? In other words, when and where is this: <script type="text/javascript"> //<![CDATA[ ...code... //]]> </script> ...
132
votes
17answers
61k views

What's the best WYSIWYG Editor for use with jQuery? [closed]

I know there are a quite a few WYSIWYG HTML editors written in JavaScript, but most of them aren't written to take advantage of jQuery. I'm looking to use one in a project I'm working on, and I would ...
132
votes
10answers
33k views

Any reason not to start using the HTML 5 doctype? [closed]

<!DOCTYPE html> It is supposed to be backwards compatible with HTML4 and XHTML. John Resig posted about some of the benefits. As long as we don't use any of the new and not supported yet ...
131
votes
12answers
94k views

Using jQuery to center a DIV on the screen

How do I go about setting a <div> in the center of the screen using jQuery?
129
votes
9answers
8k views

Can you provide some examples of why it is hard to parse XML and HTML with a regex?

One mistake I see people making over and over again is trying to parse XML or HTML with a regex. Here are a few of the reasons parsing XML and HTML is hard: People want to treat a file as a sequence ...
129
votes
15answers
43k views

How do you disable browser Autocomplete on web form field / input tag?

How do you disable Autocomplete in the major browsers for a specific input (or form field)?
128
votes
16answers
101k views

What is the best HTML editor for Eclipse?

I was amazed to find out that apparently Eclipse doesn't come with a decent HTML editor by default (it opened my .html file in some kind of browser view and apparently tried to render it). And the ...
127
votes
11answers
88k views

Remove border from IFrame

How do I remove the border from an IFrame embedded in my web app? An example of the IFrame is: <IFRAME src="myURL" width="300" height="300">Browser not compatible. </IFRAME> I would ...
125
votes
17answers
30k views

How can I determine a web user's time zone?

Is there a standard way for a Web Server to determine what Time zone offset a user is in? From an HTTP header or part of the user-agent description,perhaps?
122
votes
18answers
86k views

Convert HTML + CSS to PDF with PHP?

Ok, I'm now banging my head against a brick wall with this one. I have an HTML (not XHTML) document that renders fine in Firefox 3 and IE 7. It uses fairly basic CSS to style it and renders fine in ...
120
votes
26answers
70k views

How to detect if JavaScript is disabled?

There was a post this morning asking about: How many people disable javascript. Then I began to wonder what techniques might be used to determine if the user has it disabled. Anyone know of some ...
119
votes
10answers
71k views

jQuery Set Cursor Position in Text Area

How do you set the cursor position in a text field using jQuery? I've got a text field with content, and I want the users cursor to be positioned at a certain offset when they focus on the field. ...
115
votes
0answers
55k views

Looking for C# HTML parser [closed]

Possible Duplicate: What is the best way to parse html in C#? I would like to extract the structure of the HTML document - so the tags are more important than the content. Ideally, it ...
114
votes
2answers
9k views

How do Google+ +1 widgets break out of their iframe?

Somehow, hovering over a Google+ plus-one widget can introduce a tooltip-type deal that is clearly larger than the <iframe> element in which it is contained. I’ve inspected the DOM to confirm ...
113
votes
40answers
14k views

Hidden features of HTML [closed]

HTML being the most widely used language (at least as a markup language) has not gotten its due credit. Considering that it has been around for so many years, things like the FORM / INPUT controls ...
113
votes
17answers
48k views

How do you handle multiple submit buttons in ASP.NET MVC Framework?

Is there some easy way to handle multiple submit buttons from the same form? Example: <% Html.BeginForm("MyAction", "MyController", FormMethod.Post); %> <input type="submit" value="Send" ...
111
votes
14answers
94k views

Invoking javascript in iframe from parent page

Basically, I have an iframe embedded in a page and the iframe has some javascript routines I need to invoke from the parent page. Now the opposite is quite simple as you only need to call ...
105
votes
5answers
27k views

<button> vs. <input type=“button” />. Which to use?

When looking at most sites (including SO), most of them use: <input type="button" /> instead of: <button></button> What are the main differences between the two, if any? Are ...
105
votes
12answers
187k views

Trigger a button click with JavaScript on the Enter key in a text box

I have one text input and one button (see below). How can I use JavaScript to trigger the button's click event when the Enter key is pressed inside the text box? There is already a different submit ...
104
votes
11answers
80k views

Make a div fill the remaining screen space

I am currently working on a web application, where I want the content to fill the height of the entire screen. The page has a header, which contains a logo, and account information. This could be an ...
103
votes
8answers
48k views

CSS 100% height with padding/margin

This has been driving me crazy for a couple of days now, but in reality it's a problem that I've hit off and on for the last few years: With HTML/CSS how can I make an element that has a width and/or ...
102
votes
11answers
3k views

Isn't it silly that a tiny favicon requires yet another HTTP request? How to make favicon go into a sprite?

Everybody knows how to setup a favicon.ico link in HTML: <link rel="shortcut icon" href="http://hi.org/icon.ico" type="image/x-icon" /> But I think it is just silly that for a tiny ...
102
votes
37answers
20k views

Options for HTML scraping?

I'm thinking of trying Beautiful Soup, a python package for HTML scraping. Are there any other HTML scraping packages I should be looking at? Python is not a requirement, I'm actually interested in ...
100
votes
22answers
97k views

Auto detect mobile browser (via user-agent?)

How can I detect if a user is viewing my web site from a mobile web browser so that I can then auto detect and display the appropriate version of my web site?
99
votes
10answers
182k views

How to apply CSS to iFrame?

I have simple page that has some iFrame sections (to display RSS links). How can I apply the same CSS format for the main page to the page displayed in the iFrame?
95
votes
11answers
73k views

Make CSS Div Width Equal To Contents

I have a layout similar to: <div> <table> </table> </div> I would like for the Div element to only expand to as wide as my table element becomes. Any suggestions? ...
94
votes
19answers
146k views

Best Way to Embed PDF in HTML

What is the Best Way to Embed PDF in HTML? iFrame? Object? Embed? Adobe pronounces itself about it? Supose that the PDF was generated on the fly, so it can't be uploaded to a thrid-party ...
92
votes
42answers
4k views

Should We Mask Passwords?

From Jacob Nielson's "Stop Password Masking": Usability suffers when users type in passwords and the only feedback they get is a row of bullets. Typically, masking passwords doesn't even ...
91
votes
2answers
15k views

CSS Selectors parsed right to left. Why?

CSS Selectors are parsed by browser engines right to left. So they first find the children and then check their parents to see if they match the rest of the parts of the rule. Why is this? Is it ...
91
votes
3answers
40k views

How to use HTML Agility pack

How do I use the HTML Agility Pack? My XHTML document is not completely valid. That's why I wanted to use it. How do I use it in my project? My project is in C#.
89
votes
12answers
6k views

Custom attributes - Yay or nay?

Recently I have been reading more and more about people using custom attributes in their HTML tags, mainly for the purpose of embedding some extra bits of data for use in javascript code. I was ...
83
votes
12answers
11k views

When do you use POST and when do you use GET?

From what I can gather, there are three categories - never use GET and use POST, never use POST and use GET, and it doesn't matter which one you use. Am I correct in assuming those three cases? If ...
82
votes
10answers
216k views

Change the image source using jQuery

I have a few images and their rollover images. Using jQuery, I want to show/hide the rollover image when the onmousemove/onmouseout event happen. All my image names follow the same pattern, like this: ...
77
votes
11answers
19k views

Google's Imageless Buttons

There have been a few articles recently about Google's new imageless buttons: http://stopdesign.com/archive/2009/02/04/recreating-the-button.html http://stopdesign.com/eg/buttons/3.0/code.html ...
77
votes
9answers
63k views

What is the most efficient way to create HTML elements using jQuery?

Recently I've been doing a lot of modal window pop ups and what not, for which I used jQuery. The method that I used to create the new elements on the page has overwhelmingly been along the lines of: ...

1 2 3 4 5 1547