Tagged Questions
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>
...
129
votes
15answers
44k 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)?
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 ...
59
votes
20answers
19k views
GET versus POST in terms of security?
This may be a dumb question, but between a http POST and GET, what are the differences from a security perspective? Is one inherently more secure then another? I realize that POST doesn't expose ...
57
votes
5answers
2k views
Web scraping etiquette
I'm considering writing a simple web scraping application to extract information from a website that does not seem to specifically prohibit this.
I've checked for other alternatives (eg RSS, web ...
52
votes
5answers
1k views
Does it still make sense to use HTML comments on blocks of JavaScript?
In the past people used to wrap HTML comment tags around blocks of JavaScript in order to prevent "older" browsers from displaying the script. Even Lynx is smart enough to ignore JavaScript, so why do ...
49
votes
16answers
60k views
In JavaScript can I make a “click” event fire programmatically for a file input element?
I'd like to make a click event fire on an <input type="file"> tag programmatically.
Just calling click() doesn't seem to do anything or at least it doesn't pop up a file selection dialog.
I've ...
45
votes
5answers
19k views
Using relative URL in CSS file, what location is it relative to?
When defining something like a background image URL in a CSS file, when using a relative URL, where is it relative to? For example:
/stylesheets/base-styles.css:
div#header {
...
41
votes
24answers
3k views
How do you test layout design across multiple browsers/OSs?
What is a good method for testing website layout designs across multiple browsers and operating systems?
37
votes
9answers
16k views
Is putting a div inside a anchor ever correct?
I've heard that putting a block element inside a inline element is a HTML sin:
<a href="http://www.mydomain.com"><div>
What we have here is a problem.
You see, an anchor element is an ...
34
votes
12answers
27k views
Can an html element have multiple ids?
I understand that an id must be unique within an HTML/XHTML page.
My question is, for a given element, can I assign multiple ids to it?
<div id="nested_element_123 task_123"></div>
I ...
33
votes
6answers
5k views
Load and execution sequence of a web page?
I did some web based projects. But I don't think too much about the load and execution sequence of an ordinary web page. But now I need to know detail. It's hard to find the result from Google or SO. ...
30
votes
9answers
20k views
HTML: Is there an ascii character for a up/down triangle (arrow)?
I'm looking for an html/ascii character which is a triangle up and down so that I can use it as a toggle switch.
I found ↑, and ↓ - but those have an arrow "stem". I'm looking just for the ...
29
votes
7answers
14k views
Can I stop 100% Width Text Boxes from extending beyond their containers?
Lets say I have a text box that I want to fill a whole line. I would give it a style like this:
input.wide {display:block; width: 100%}
This causes problems because the width is based on the ...
28
votes
11answers
24k views
Why use definition lists (DL,DD,DT) tags for HTML forms instead of tables?
I've come across a few examples recently that do things like:
<dl>
<dt>Full Name:</dt>
<dd><input type="text" name="fullname"></dd>
<dt>Email ...
27
votes
11answers
3k views
What is the difference between <p> and <div>?
What is the difference between <p> and <div>?
Can they be used interchangeably? What are the applications?
27
votes
17answers
5k views
Why developers hate iframes? [closed]
Possible Duplicate:
Are iframes considered 'bad practice'?
While working with web developers, I always hear from them that using iframes is something we must avoid as we can, and ...
25
votes
8answers
94k views
Which browser has the best support for HTML 5 currently? [closed]
Where can I test HTML 5 functionality today - is there any test build of any rendering engines which would allow testing, or is it to early? I'm aware that much of the spec hasn't been finalised, but ...
24
votes
16answers
1k views
What's the need for XHTML?
In an interview I was asked a question that I'd never thought about, which was "We already have HTML which fulfills all the requirements of writing a web page, so what's the need for XHTML?"
I ...
24
votes
11answers
4k views
Is it considered bad practice to use absolute positioning?
I was developing a web page, where I was laying out a board for a Chess-like game, along with a couple of piece trays. It's all done using HTML (with jQuery for dynamic updating as the game is ...
23
votes
10answers
6k views
What's the best way to open new browser window?
I know that most links should be left up to the end-user to decide how to open, but we can't deny that there are times you almost 'have to' force into a new window (for example to maintain data in a ...
23
votes
10answers
3k views
Is there a html opposite to noscript
Is there a tag in html that will only display its content if JavaScript is enabled? I know noscript works the opposite way around, displaying its html content when JavaScript is turned off. but I ...
22
votes
28answers
2k views
Underused Features of HTML
Yes, many web developers live and breathe HTML, but there are still tags and tricks that aren't used as often as they could be. What are some of your favorites?
21
votes
6answers
4k views
In HTML, how to word-break on a dash?
give a relatively simple css:
<div style="width:150px;">
12333-2333-233-23339392-332332323
</div>
How do I make it so that the string stays constrained to the width of 150, and simply ...
20
votes
0answers
666 views
Why does HTML think “chucknorris” is a color? [closed]
Possible Duplicate:
Weird CSS Background Colors
How come certain random strings produce various colors when entered as background colors in HTML? For example:
<body ...
20
votes
7answers
28k views
Tips for optimizing a website for Android's browser?
I'm looking for tips, tricks and resources on optimizing a website design for Android's browser.
I'm building an Android app and some of the functionality will be accessible through a web interface.
19
votes
8answers
3k views
What are the important meta tags I must put in my website?
There seems to be huge number of meta tags you can set. I'm guessing that some of them are more important than others.
What are the most important metatags to supply and why?
Do I even need meta ...
19
votes
19answers
7k views
Web Development IDE Suggestions [closed]
I'm looking for suggestions for web development IDEs. I'm currently looking at Aptana Studio and it looks rather impressive so far. Anyone have other suggestions?
I'm looking for support for HTML, ...
17
votes
4answers
810 views
Why serve 1x1 pixel GIF (web bugs) data at all?
Many analytic and tracking tools are requesting 1x1 GIF image (web bug, invisible for the user) for cross-domain event storing/processing.
Why to serve this GIF image at all? Wouldn't it be more ...
17
votes
4answers
13k views
Google Maps: How to create a custom InfoWindow?
I just came across http://fwix.com/
I really like how they create the InfoWindow (popup) when you click on a map marker because the corners on their InfoWindow are not as round as the default ...
16
votes
2answers
850 views
Network-Path Reference URI / Scheme relative URLs
Scheme relative URLs (network-path references) are something that I've just found out about - where you don't specify the scheme of a URL and it picks it up from the current context.
For example:
...
16
votes
3answers
6k views
HTML5 tags not working at all in firefox 3.6.3
Okay, so I'm trying to get into this whole HTML 5 thing, and this tutorial (http://www.webreference.com/authoring/languages/html/HTML5/) says that these tags should move the content around without ...
15
votes
12answers
2k views
HTML <head> best practices
There are <meta> tags and other things you can place in the <head> of your HTML document. What <meta> tags etc. and best practices do you make use of in your HTML document to make it ...
14
votes
2answers
103 views
How do tell a browser not to offer to save an incorrect password?
Often on a website, if I enter the wrong password by mistake, I get a page back that indicates the wrong credentials, but Chrome (Or whatever) prompts me with "Would you like to remember this ...
14
votes
3answers
3k views
HTML5 form required attribute. Set custom validation message?
I've got the following HTML5 form: http://jsfiddle.net/nfgfP/
Currently when I hit enter when they're both blank a popup box appears saying "Please fill out this field" how would I change that ...
14
votes
7answers
538 views
which is better to add two names (-) or(_)
hi when i write css or html i found that i want add two name like this
web-development
web_development
which one is better according SEO or write style name, file name or image name.
14
votes
13answers
20k views
What the typical viewport size on a 1024x768 screen?
I am designing a web application, and I wish to know the largest size (x and y) that I can design for.
As of January 2008, about half of users are using 1024x278 screens, and probably less than 10% ...
14
votes
8answers
2k views
Is there a centralized list of country names that can be used for web drop down boxes (and validation)
There are examples online with web select boxes that have a huge list of countries and that probably will be good enough for me to use. However, by Murphy's law, there's bound to be some random ...
14
votes
3answers
7k views
Soft hyphen in HTML (<wbr> vs. ­)
How do you solve the problem with soft hyphens on your web pages? In a text there can be long words which you might want to line break with a hyphen. But you do not want the hyphen to show if the ...
13
votes
12answers
6k views
How can I export tables to excel from a webpage
Whats the best way to export tables to excel from a webpage. I want the export to contain all the formatting and colours.
13
votes
10answers
2k views
WYSIWYG editor vs Hand Code
What are the pros and cons of using a WYSIWYG editor for web page development vs hand coding?
With the exception of just not knowing how to create something by hand coding is there any reasons to use ...
12
votes
17answers
563 views
Web development IDE on Linux?
As of 2011, what are the IDE options for a web developer in Linux?
Primarily I am asking for an IDE that have support for the following functionalities:
HTML: syntax completion, highlighting, ...
12
votes
8answers
339 views
Update all IE6 to IE8? [closed]
This has always confused me.
Everyone says that IE6 dies slowly. But what is preventing Microsoft to update all IE6 to IE8?
When a user open the IE6, if it says "Update to a newer version" then I ...
12
votes
8answers
321 views
which unit i should use in CSS, while designing web page
I deisgned more than 10 sites, still i had a doubt in mind of 'Whats the correct unit I should use'. Whether it is px, or em or %. Plz guide me to right direction
EDIT 1: FOR LAYOUTS (Especially for ...
12
votes
9answers
836 views
What's the best platform for a static-website? [closed]
I am building a static-website (as in, to change a page, we change the HTML and there is no DB or anything). Well, it will have a number of pages and I don't want to copy and paste the HTML navigation ...
12
votes
3answers
360 views
Is it “safe” to use schemeless protocol URIs on public websites? Ex. //www.example.com/dir/file
In HTML when referencing images, css, javascript, etc... I sometimes use links without the http or https scheme portion, à la. <img src="//www.example.com/dir/file.gif" alt="" /> and I haven't ...
12
votes
3answers
1k views
Which browsers support data URIs and since which version?
Which browsers support data URIs (RFC 2397) and since which version?
12
votes
6answers
1k views
What Unicode character do you use in your website? (instead of image icons)
I am looking for character which could replace image icon, for example like ✘ (xmark) and ✔ (tick), maybe some symbol to "draft" or "new message"?
EDIT:
Fav: ❤
Draft: ✍
Message: ✉
12
votes
7answers
2k views
Does jQuery or JavaScript have the concept of classes and objects?
I found the following code somewhere, but I am not understanding the code properly.
ArticleVote.submitVote('no');return false;
Is ArticleVote a class and submitVote() a function of that class?
Or ...
12
votes
6answers
2k views
What's the best “file format” for saving complete web pages (images, etc.) in a single archive?
I'm working on a project which stores single images and text files in one place, like a time capsule. Now, most every project can be saved as one file, like DOC, PPT, and ODF. But complete web pages ...