I'm re-learning JavaScript, and I'll help you along the way! (There'll be occasional parts in HTML5!)
Tutorials
Examples
Browser Check - Here!
Browser Check was meant for a more serious project, until I got bored. It was made for HTML5 checking, and since IE doesn't support even a quarter of HTML5, I made this. It blocks you from going further.
_______________________________
Redirection - Here!
I found this a bit more fun. Just open it up, and you are then transported to google.com!
_______________________________
Passwords - Here!
Just to say, this is not secure. Looking at the source code of this could tell you the password straight away. Anyway, if you get it right, it take's you to google.com
Last edited by Servine (2012-02-10 12:18:37)
Offline
Servine wrote:
I'm re-learning JavaScript, and I'll help you along the way! (There'll be occasional parts in HTML5!)
Tutorials
Examples
Browser Check - Here!
Browser Check was meant for a more serious project, until I got bored. It was made for HTML5 checking, and since IE doesn't support even a quarter of HTML5, I made this. It blocks you from going further.
_______________________________
Redirection - Here!
I found this a bit more fun. Just open it up, and you are then transported to google.com!
_______________________________
Passwords - Here!
Just to say, this is not secure. Looking at the source code of this could tell you the password straight away. Anyway, if you get it right, it take's you to google.com
IE supports HTML5, to let you know
I used HTML5 to make a website too, and IE displays it just fine, so There's nothing wrong betwein them
Offline
DigiTechs wrote:
Servine wrote:
I'm re-learning JavaScript, and I'll help you along the way! (There'll be occasional parts in HTML5!)
Tutorials
Examples
Browser Check - Here!
Browser Check was meant for a more serious project, until I got bored. It was made for HTML5 checking, and since IE doesn't support even a quarter of HTML5, I made this. It blocks you from going further.
_______________________________
Redirection - Here!
I found this a bit more fun. Just open it up, and you are then transported to google.com!
_______________________________
Passwords - Here!
Just to say, this is not secure. Looking at the source code of this could tell you the password straight away. Anyway, if you get it right, it take's you to google.comIE supports HTML5, to let you know
I used HTML5 to make a website too, and IE displays it just fine, so There's nothing wrong betwein them
![]()
It doesn't support as much as others though.
Offline
Servine wrote:
It doesn't support as much as others though.
Well, IE9 does support canvas (and I think it has quite good performance) and a number of other new(ish) web technologies. If you use document.createElement(...) to introduce them to IE and use a CSS reset, it supports all the semantic elements. The new input types and validation methods are all meant to be just helpful, and they function correctly even if the browser doesn't support them.
Anyway, you should really do feature detection instead of blocking an entire browser. For example, if I wanted to use FileReader from the File API, I could test:
function doSomethingWithFiles() {
if (!window.FileReader) {
// alert the user that their browser does not support this feature
return;
}
// ...
}Offline