Archive for January, 2012

Tuesday, January 31st, 2012

The alert() and confirm() methods

I am continuing on with looking at the older pages on the site and making sure that the information is up to date. In many cases especially with the shorter pages I am trying to also add in more information. With regard to the alert and confirm built in dialogs in JavaScript it is no [...]

Monday, January 30th, 2012

New Help Desk

I have now added a new help desk linked from each of my main sites that provides an alternative way for people to ask for help with their computer problems. New Help Desk Note that I didn’t write the code that runs the help desk. It is currently being sold at such a small fraction [...]

Sunday, January 29th, 2012

Styling Columns

The eighth tutorial about coding tables in XHTML covers how to use the <colgroup> and <col> tags to attach styles to the columns. Styling Columns

Saturday, January 28th, 2012

Merging Rows

The table cells you want to merge are not always next to one another. Here’s how to merge them when they are one above the other. Merging Rows

Friday, January 27th, 2012

Merging Columns

The sixth tables tutorial looks at how to merge two cells into one when the cells are next to one another. Merging Columns

Thursday, January 26th, 2012

Which DOM to use

There is now only one document object model that you need concern yourself with when it comes to interacting with the HTML from JavaScript. Back when I first wrote about the DOM there were three as two browsers had proprietary versions. I have therefore introduced new material into the top of the Which DOM to [...]

Wednesday, January 25th, 2012

How do you add a JavaScript to your page?

How you can attach JavaScript hasn’t changed since I first wrote about it. What has changed though is which of the ways to attach it is best and where in the page to attach it is most appropriate are now completely different than they were back when Netscape 4 was still in use and 3/4 [...]

Tuesday, January 24th, 2012

What is JavaScript?

I have decided to start reviewing the content of a lot of the pages on the site so as to update those that are either outdated or where I think the wording on the page can be improved. Since JavaScript has changed significantly since I first started writing that section back in 2000 I decided [...]

Monday, January 23rd, 2012

iPod – The Missing Manual

I don’t have an iPod but my son does and he’s using it almost constantly when he’s at home. So I thought that getting him to review this book for me was both a way to introduce him to writing book reviews and also to be able to provide a review of a book that [...]

Sunday, January 22nd, 2012

Row Headings

Returning to the tables tutorials we last looked at on Sunday. When adding a table to your web page you will often need to give each row a heading to identify the relationship between the entries. Row Headings

Saturday, January 21st, 2012

Table Content

With the column headings and footers in place the next step in creating a table is to add the content. Table Content

Friday, January 20th, 2012

Column Footers

While few tables have footers at the bottom of each column, the next thing in your table source after the column headings when you do have them are the footers. The reason for this is that when printing tables browsers are supposed to print the header and footer on each page and so need to [...]