314
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)" ...
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 ...
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>
...
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. ...
111
votes
14answers
95k 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 ...
106
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 ...
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 ...
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:
...
71
votes
9answers
66k views
How to normalize HTML in JavaScript or jQuery?
Tags can have multiple attributes. The order in which attributes appear in the code does not matter. For example:
<a href="#" title="#">
<a title="#" href="#">
How can I "normalize" the ...
70
votes
1answer
8k views
How does _gaq.push(['_trackPageLoadTime']) work?
How does the Google Analytics Site Speed feature, _gaq.push(['_trackPageLoadTime']), work? Is there any documentation about how it works?
66
votes
9answers
2k views
Why is it a bad practice to return generated HTML instead of JSON? Or is it?
It is quite easy to load HTML content from your custom URLs/Web services using JQuery or any other similar framework. I've used this approach many times and till now and found the performance ...
65
votes
9answers
6k views
How to show popup message like in stackoverflow
I would like to add a popup message like the one that appears on stackoverflow when I am not logged in and I try to use voting buttons.
What is the best method for achieving that?
Is it done using a ...
63
votes
13answers
76k views
Google Maps API v3: How to remove all markers?
In Google Maps API v2, if I wanted to remove all the map markers, I could simply do:
map.clearOverlays();
How do I do this in Google Maps API v3?
Looking at the Reference API, it's unclear to me.
62
votes
18answers
67k views
How do I make an HTML text box show a hint when empty?
I want the search box on my web page to display the word "Search" in gray italics. When the box receives focus, it should look just like an empty text box. If there is already text in it, it should ...
60
votes
10answers
62k views
Submitting a form on 'Enter' with jQuery?
I have a bog-standard login form - an email text field, a password field and a submit button on an AIR project that's using HTML/jQuery. When I hit Enter on the form, the entire form's contents ...
57
votes
4answers
8k views
Problems with HTML <marquee> tag
Actually I am trying to move some box alternatively with in another box. I made it work, but both the blocks do not interrupt each other. What should I do? How can I make the blocks cross each other? ...
55
votes
4answers
33k views
Get Class List for Element with jQuery
Is there a way in JQuery to loop through or assign to an array all of the classes that are assigned to an element?
ex.
<div class="Lorem ipsum dolor_spec sit amet">Hello World!</div>
I ...
55
votes
10answers
17k views
jQuery/Javascript to replace broken images
I have a web page that includes a bunch of images.
Sometimes the image isn't available so a broken image is displayed in the clients browser.
How do I use jQuery to get the set of images, filter it ...
55
votes
24answers
58k views
Dropdownlist width in IE
In IE, the dropdown-list takes the same width as the dropbox (i hope i am making sense) whereas in Firefox the dropdown-list's width varies according to the content.
This basically means that i have ...
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 ...
50
votes
10answers
33k views
Modify the URL without reloading the page
Is there any way I can modify the URL of the current page without reloading the page?
I would like to access the portion before the # hash if possible.
I only need to change the portion after the ...
49
votes
18answers
13k views
How to store arbitrary data for some HTML tags
I'm making a page which has some interaction provided by javascript. Just as an example: links which send an AJAX request to get the content of articles and then display that data in a div. Obviously ...
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 ...
49
votes
8answers
4k views
Non-Standard Attributes on HTML Tags. Good Thing? Bad Thing? Your Thoughts?
HTML (or maybe just XHTML?) is relatively strict when it comes to non-standard attributes on tags. If they aren't part of the spec, then your code is considered non-compliant.
Non-standard attributes ...
46
votes
9answers
50k views
Dynamically retrieve Html element (X,Y) position with JavaScript
I want to know how to get X and Y postion of HTML elements such as img, div in JavaScript.
thanks
46
votes
18answers
36k views
Autosizing textarea using prototype
I'm currently working on an internal sales application for the company I work for, and I've got a form that allows the user to change the delivery address.
Now I think it would look much nicer, if ...
45
votes
8answers
42k views
How can I determine the element type of a matched element in jQuery?
I'm matching ASP.Net generated elements by ID name, but I have some elements which may render as text boxes or labels depending on the page context. I need to figure out whether the match is to a ...
44
votes
10answers
6k views
Choosing Mobile Web HTML5 Framework
For the new project, I have been searching for a framework with support of HTML5 and runs on mobile, that is IPhone, IPads. I found out these:
Sencha Touch
M-Project
jQuery Mobile
jQTouch
Titanium
...
44
votes
18answers
4k views
Best way to obfuscate an e-mail address on a website?
I've spent the past few days working on updating my personal website. The URL of my personal website is (my first name).(my last name).com, as my last name is rather unusual, and I was lucky enough to ...
43
votes
16answers
34k views
HTML table with fixed headers?
Is there a cross-browser CSS/JavaScript technique to display a long HTML table such that the column headers stay fixed on-screen and do not scroll with the table body. Think of the "freeze panes" ...
43
votes
11answers
20k views
What's the effect of adding 'return false' to an onclick event?
Many times I've seen links like these in HTML pages:
<a href='#' onclick='someFunc(3.1415926); return false;'>Click here !</a>
What's the effect of the return false in there ?
Also, I ...
42
votes
7answers
33k views
Should I use window.navigate or document.location in JavaScript?
What's the preferred method to use to change the location of the current web page using JavaScript? I've seen both window.navigate and document.location used. Are there any differences in behavior? ...
42
votes
6answers
21k views
How is the default submit button on an HTML form determined?
If a form is submitted but not by any specific button, such as
by pressing Enter
using HTMLFormElement.submit() in JS
how is a browser supposed to determine which of multiple submit buttons, if ...
40
votes
4answers
2k views
HTML5 Boilerplate vs. HTML5 Reset
Hey everyone — HTML5 Boilerplate and HTML5 Reset are two HTML, CSS, and JavaScript templates with a lot of modern best practices built-in. Their goals are largely the same:
Fast, robust, ...
39
votes
5answers
25k views
Set cursor position on contentEditable <div>
I am after a definitive, cross-browser solution to set the cursor/caret position to the last known position when a contentEditable='on' <div> regains focus. It appears default functionality of a ...
39
votes
6answers
51k views
How to impose maxlength on textArea in HTML using JavaScript
I would like to have some functionality by which if I write
<textarea maxlength="50"></textarea>
<textarea maxlength="150"></textarea>
<textarea ...
39
votes
9answers
40k views
Strip HTML from Text JavaScript
Is there an easy way to take a string of html in JavaScript and strip out the html?
39
votes
11answers
6k views
Syntax highlighting code with Javascript
What Javascript libraries can you recommend for syntax highlighting <code> blocks in HTML?
(One suggestion per answer please).
39
votes
16answers
62k views
I need my html table's body to scroll and its head to stay put
I am writing a page where I need an html table to maintain a set size. I need the headers at the top of the table to stay there at all times but I also need the body of the table to scroll no matter ...
38
votes
16answers
32k views
Is there a way to make text unselectable on an html page?
I'm building an html UI with some text elements, such as tab names, which look bad when selected. Unfortunately, it's very easy for a user to double-click a tab name, which selects it by default in ...
37
votes
7answers
6k views
How to remove the space between inline-block elements?
Given this HTML:
<p>
<span> Foo </span>
<span> Bar </span>
</p>
and this CSS:
span {
display:inline-block;
width:100px;
}
as a result, there ...
37
votes
9answers
2k views
Is there any way to specify a suggested filename when using data: URI?
If for example you follow the link:
data:application/octet-stream;base64,SGVsbG8=
The browser will prompt you to download a file consisting of the data held as base64 in the link itself. Is there ...
36
votes
7answers
2k views
Header message just like at Stack Overflow
This is the first time I visited stack overflow and I saw a beautiful header message which displays a text and a close button.
The header bar is fixed one and is great to get the attention of the ...
36
votes
9answers
38k views
How do you automatically set the focus to a textbox when a web page loads?
OK, this has to be insanely easy but I honestly don't know how to do it. How do you automatically set the focus to a textbox when a web page loads?
Is there an HTML tag to do it or does it have to ...
35
votes
10answers
756 views
Looking for a question that combines the understanding of few web technologies
I am teaching a web development course at a CS department, I wrote most of the final test by now, each question focus on a specific feature or a specific technology,
I wonder if you can think ...
34
votes
14answers
74k views
JQuery Popup Bubble
I'm trying to make a "bubble" that can popup when the onmouseover event is fired and will stay open as long as the mouse is over the item that threw the onmouseover event OR if the mouse is moved into ...