JavaScript and HTML Tricks

Here are some of my favorite JavaScript and HTML tricks. There are a wide variety of options: from storing and using hidden data to making HTML forms and lists look great. Each topic has a brief introduction showing you how it will improve your Web site. Then I'll go into each technique in detail.
  • Embedding data in hidden HTML elements and retrieving text lines in a platform-independent fashion
  • Randomizing data with JavaScript
  • Using a stylish form fieldset
  • Making clickable descriptions for checkboxes and radio buttons by using labels
  • Using CSS list-style-image to make beautiful bulleted lists

Introduction

The last time we discussed How to Use a JavaScript Query String Parser. Now we will discuss five more valuable JavaScript and HTML techniques and tricks.

Many times I've stored data in hidden HTML elements for scripts. It's a great way to keep prices and product names handy for e-commerce, or for lists of data that will be formatted by a script. To do that, it's necessary to interpret the lines of data in an operating-system independent way. I've even used this technique to store the radio programming information for a weekly radio schedule. Data stored this way can be graceful at degrading for older browsers. As an example, the radio schedule I mentioned was typed as preformatted text visible to older browsers, but transformed into a dynamically navigable Web page by JavaScript.

Another thing that comes up frequently is randomizing data that is used by a JavaScript program. Random links, images, statisics research and mathematical analysis come to mind as immediate applications.

My Web programming has never been the same since I learned how to use fieldsets to make beautiful forms in Web pages. Best of all, there's no bandwidth intensive imagery to use - it's built into the HTML!

While on the topic of forms, usability and efficiency increase in importance when check boxes and radio buttons are provided with clickable descriptions. Many people expect to click the descriptions, anyway, from experience with other programs. It would be sad to disappoint them, especially when HTML provides an excellent and natural way of doing it.

As a Grand Finale, you'll learn about one of the classic tricks of stylesheets. Using deluxe bullets for your lists will make your Web site more professional and appealing.

Getting Data From Text Lines in Hidden HTML Elements

Data for a script program can be embedded efficiently directly into the HTML source code, either in a hidden input field or a hidden HTML element. A script which reads this data has to perform a small number of steps.

  • Hide the data contents of the hidden field in the HTML document
  • Refer to the data using the document object model
  • Normalize the line breaks for cross-platform compatibility
  • Separate the lines into an array using a simple JavaScript function
  • Trim white space and remove empty lines or comments if desired
    1. <form>
    2.   <input type="hidden" id="domains" value="
    3.   0011.us
    4.   123abc.us
    5.   1mans.com
    6.   hesbest.com
    7.   9900.us
    8.   herclothing.info
    9.   findher.info
    10.   allme.us
    11.   dropoff.us
    12.   cyou.us
    13.   o-1.us
    14.   meadowlark.us
    15.   uuuuu.us
    16.   os-i.org
    17.   supergreat.us
    18.   nicewebsite.us
    19.   " />
    20. </form>
    21. <script type="text/javascript">
    22. function getLinesFromHidden(a) {
    23.   var e = document.getElementById(a);
    24.   if (!e)
    25.   return [];
    26.   var s = e.value;
    27.   s = s.replace(//r/n|/r/g, '/n');
    28.   return s.split('/n');
    29. }
    30. function trimWhiteSpace(a) {
    31.   var i;
    32.   for (i=0; i<a.length; i++)
    33.   a[i] = a[i].replace(/^/s+|/s+$/g, '');
    34.   return a;
    35. }
    36. function removeEmpty(a) {
    37.   var b = [], i;
    38.   for (i=0; i<a.length; i++)
    39.   if (a[i])
    40.   b[b.length] = a[i];
    41.   return b;
    42. }
    43. domainList = getLinesFromHidden('domains');
    44. domainList = removeEmpty(trimWhiteSpace(domainList));
    45. domainList.sort();
    46. d = document;
    47. function showList(a) {
    48.   d.write('<blockquote>', a.join('<br />'), '</blockquote>');
    49. }
    50. showList(domainList);
    51. </script>

The result is displayed below:

Result

<script type="text/javascript"> function getLinesFromHidden(a) { var e = document.getElementById(a); if (!e) return []; var s = e.value; s = s.replace(//r/n|/r/g, '/n'); return s.split('/n'); } function trimWhiteSpace(a) { var i; for (i=0; i ', a.join('
'), ''); } showList(domainList); </script>

Later, I'll write an article discussing some spreadsheet and statistics functions which can be applied to data embedded into an HTML document. At the end of every semester I prepare a quality of teaching report which uses these functions to compute statistics and correlations from classroom data. The first step is how to interpret text lines as comma separated values (CSV) or as data fields delimited in other ways.

Randomizing Data with JavaScript

Often I want to show data in random order. Somtimes I just want to pick a few random things out of many. Just as often I want to show all of the information, but in a randomized order, similar to shuffling a deck of cards. To do this we can use the JavaScript sorting algorithm in combination with a customized sorting comparison function that will randomize the sorted order.

The comparison function returns a value greater than zero or less than zero depending on which element should be sorted first. When the sorting algorithm is executed the data will be randomized if the comparison function gives each comparison of elements an equal probability of being greater than zero or less than zero.

  1. <script type="text/javascript">
  2. randomComparison = function(a, b) {
  3.   return Math.random()-.5;
  4. };
  5. domainList.sort(randomComparison);
  6. showList(domainList);
  7. </script>

Result

<script type="text/javascript"> randomComparison = function(a, b) { return Math.random()-.5; }; domainList.sort(randomComparison); showList(domainList); </script>

Some high-speed sorting algorithms are unstable, and might not result in all data being truly randomized. In a sense, one could say that the sorting algorithm divides up the data too fast for the randomizing to occur. A truly random shuffling has the property that each element has the same probability of being assigned to each location, or equivalently, each permutation of objects is equally likely. As far as I know, Safari is the only browser which may have an unstable sorting algorithm, resulting in the domain uuuuu.us being sorted to the last position most of the time, although other domains appear to be randomly placed. Unstable sorting algorithms may be fine, depending on the application.

There are also iterative methods for sorting. Iterative sorting methods are useful because the computational cost of one iteration is O(N) rather than O(n log N). A precise estimate is typically from N/2 to 2N. The data is not completely sorted after one iteration, but that's fine when the data ranking is based on subjective criteria such as clicking popularity or Google PageRank. Usually a good iterative sorting method guarantees that at least the lowest and highest ranked items are sorted to the correct positions.

Using a stylish form fieldset

One of the coolest form elements built into HTML is the fieldset. It relies on the browser to create a look that can't be replicated using ordinary HTML commands. It has the sophistication of images without the development effort, server load or extra client bandwidth.

A fieldset must be contained in a form. If you want to use one elsewhere, just surround it with form tags, provided that you're not interrupting another form, of course. One form can contain as many fieldsets as you wish.

  1. <form>
  2.   <fieldset>
  3.   <legend>Please enter your Yahoo! Login Information</legend>
  4.   <table>
  5.     <tr><th>User name</th>
  6.     <td><input type="text" name="name" /></td></tr>
  7.     <tr><th>Password</th>
  8.     <td><input type="password" name="password" /></td></tr>
  9.     <tr><th>Security</th>
  10.     <td colspan="2"><input type="radio" name="secure" value="home" id="secure_home" />
  11.     <label for="secure_home">Remember my user name and password on this computer</label><br />
  12.     <input type="radio" name="secure" value="group" id="secure_group" checked="checked" />
  13.     <label for="secure_group">Remember my user name only</label><br />
  14.     <input type="radio" name="secure" value="public" id="secure_public" />
  15.     <label for="secure_public">Do not remember my user name or password</label></td></tr>
  16.     <tr><th><input type="submit" value="Login to Yahoo!" /></th></tr>
  17.   </table>
  18.   </fieldset>
  19. </form>

Result

Please enter your Yahoo! Login Information
User name
Password
Security

Using Labels to Create Checkboxes and Radio Buttons With Clickable Descriptions

You'll notice in the form above that one can click on the descriptions of the security options in order to choose the desired option. To do this, each radio button must be labeled with an HTML ID. The clickable description has an attribute for="HTML ID" which allows the browser to understand that the radio button should be selected when the user clicks the description.

This is a natural thing for people to do at your Web site. It's difficult to navigate a mouse to select a small checkbox or radio button in comparison to simply clicking the description. Clickable descriptions make Web designs more efficient, and the the user experience more satisfying and enjoyable. Yet it's surprising how many HTML developers don't write their forms this way.

Using List-Style-Image to Make Beautiful Bulleted Lists

In HTML, an unordered list (the ul and li elements) is one of the easiest ways to organize information. It looks like this.

  • Meat
  • Potatoes
  • Water

Lists like this are a best friend to anyone who wants to organize their Web page and make the best use of both white space and text. But did you know that through stylesheets there can be much more to a simple bulleted list?

One can spice up their lists by using any bullet of their choice, and a stylesheet which replaces the default black circular bullet with a nice-looking image. This is done by selecting the li elements contained in the unordered lists and specifing a URL corresponding to the list-style-image attribute.

The best thing about list-style-image is that stylesheets already provide this new design tool, making complicated graphic design work unnecessary.

Here's how it works:

  1. <style type="text/css">
  2. ul.orangearrow li {
  3.   list-style-image: url(http://0--0.us/0067_circular_arrow.png);
  4. }
  5. </style>
  6. <ul class="orangearrow">
  7.   <li>meat</li>
  8.   <li>potatoes</li>
  9.   <li>water</li>
  10. </ul>

Result

  • Meat
  • Potatoes
  • Water
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值