
asked by Dion Davis, a student in Phoenix
Maintaining page validation while embedding flash can be a pain for anyone. Most people try to drop the swf onto their page in dreamweaver, in this case dreamweaver will try its best to write a little code for you to make it work. The problem is that it doesn’t validate. In my opinion the easiest way to accomplish this is use the SWFObject JavaScript.
asked by Caustic Dave from Michigan
Private variables can be created by using the ‘var’ syntax before defining the variable.
That limits its scope to within the object it was created in.
Example
function fName(){ //functions are objects in javascript var firstname = “steve”; // firstname is a private variable for the object fName } lastname = “albridge” ; // lastname is a global/public variable
Additional Reference
OOP in JS, Part 1 : Public/Private Variables and Methods
Private Static Members in Javascript
Private Members in JavaScript - Douglas Crockford

asked by Jake, a Web Developer from New York
The lack of proper error reporting in IE is daunting for new developers, but there are some add-ons that can help manage javascript errors for IE6.
(more…)
Lets face it. When you’re first starting out in this “web design stuff” it can be pretty intimidating. There’s tons of information to learn, questions popping off in your head, curiosity about how things work, worry if you’ll ever be as good as some people, or just the thought of where to start. Hopefully the following tips will ease that headache and get you on your way. (Disclaimer: The following assumes you have basic HTML and CSS knowledge)
Firefox has become the defacto standard for web developers across the globe. Through easily available extensions it is a indisposable tool for professional web workers.I didnt realise how much of my productivity was tied into firefox until my Mac went bust and I had to re-install firefox. Like all developers, over time I had accumulated quite a few nifty time-saving Firefox Extensions and bookmarklets like The Web Developer Toolbar, ColorZilla color picker, Firebug debug console and the Tiny HTML validator.
My Fresh Install of firefox was lacking all these extensions and i spent quite a bit of time finding and installing them again and syncing my bookmarks [ which existed across Foxmarks and Delicious ] only to find that I had neglected to manually backup my saved passwords, Having being born with the attention span of a goldfish i struggle to manage passwords and ids across multiple websites, so the loss of my auto-filled passwords had made life hell.
Hoping to avoid this scramble next time around I decided to investigate the various options available for backing up firefox profiles.
OR follow on Twitter
Twitter.com/DeDestruct