42
votes
4answers
4k 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? …
42
votes
28answers
10k views
Href for Javascript links: “#” or “javascript:void(0)”?
When building a link that has the sole purpose to run javascript, is it better to:
<a href="#" onclick="myJsFunc();">Link</a>
Or
<a href="javascript:void(0)" …
41
votes
14answers
3k 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 …
33
votes
9answers
4k 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
…
31
votes
6answers
801 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 …
30
votes
9answers
3k 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 …
27
votes
10answers
1k 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 …
24
votes
18answers
7k 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 …
21
votes
14answers
1k views
Best way to obfuscate an e-mail address on a website?
Hello all. 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 …
19
votes
6answers
788 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 …
18
votes
5answers
680 views
Load and execution sequence of a web page?
Hi All:
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 …
17
votes
11answers
655 views
What is the correct way to write HTML using Javascript?
I see in some posts that people frown upon using document.write() in javascript when writing dynamic HTML.
Why is this? and what is the correct way?
15
votes
8answers
1k views
Syntax highlighting code with Javascript
What Javascript libraries can you recommend for syntax highlighting <code> blocks in HTML?
(One suggestion per answer please).
15
votes
11answers
2k views
HTML: 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 …
14
votes
8answers
532 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 …
