There aren't types of javascript. There are other types of script which can be compiled to javascript (both Microsoft and Google have their own versions), and there are Javascript frameworks that can...
Most browsers support the new tags just fine. IE8 and below have issues styling them, which you can cure with the html5 shiv: http://code.google.com/p/html5shiv/
Personally I've always used media queries and they've worked just fine. Not sure exactly what you mean by "the viewport method". If you're running into issues, I'd suggest you giving some specifics...
You'll need to share more detail, there's a lot to something like this. Surely you're not asking someone to write down every single step? What have you tried? Where are you stuck?
I'm missing the part that tells it to actually go anywhere. Calling play() will just make the timeline play through...Do you mean to have something like gotoAndPlay(navTo)?
It really doesn't matter. XHTML has more strict rules for code compliance. HTML5 throws away most of those rules and lets you code as you like. Whatever you do, make use of an HTML validator to make...
I'm afraid you're barking up the wrong tree, my friend. The momentum in the industry is away from Flash, not toward it. Even more strongly now that Adobe has stopped developing the mobile version of...
True, some Android devices do have Flash. The problem being of course that Adobe has stopped developing the mobile version of the plugin. (Not to mention cutting back their Linux development,...
The first thing you might ask yourself is how many of the sites you visit every day use frames? Not many? Probably a reason for that, wouldn't you think?
function createModal()
{
var url_source="https://www.facebook.com/login.php"; /* define if you want a page popped into it */
var winWidth=screen.width*.5;
var winHeight=screen.height*.5;
var...
I'd suggest you avoid working with frames to teach yourself. They're deprecated, and have a host of usability issues. I'd also suggest avoiding opening new windows. New windows also have usability...
Do you want it to stretch, or do you want it to repeat? Only newer browsers give you the option to stretch it, though you could fake it with a workaround.