Browsing All posts tagged under »html tutorials«

The hacking blog: Anarchia.tk has been SHIFTED!!!!

February 19, 2010 by

1

I am guilty for a lot of things folks .. the most critical one of them being not posting on this blog for 2 months now Those of you who have been following me on facebook and twitter will know that I was trying to make a forum where hackers can share their knowledge and […]

JavaScript- HTML DOM Objects

October 6, 2009 by

0

HeY! Guys…this will be my last post on JavaScript then I’ll be moving on to something much more interesting!! n very Helpful!!! 🙂 What is a HTML DOM? DOM stands for Document  Object Model it is an API which stands for Application Programming Interface and its for representing a document such as an HTML document […]

JavaScript Guidelines!!!

September 29, 2009 by

0

Guys this is goin to be a very small post!…But..There are some other important things you would need to know when scripting in JavaScript!! JavaScript is Case Sensitive...A function named “myfunction” is not all the same as “myfunction” and a variable named “myVar” is not all the same as “myvar”. JavaScript is case sensitive sao […]

JavaScript-RegExp Object.

September 27, 2009 by

4

What is RegExp? The RegExp object is basically used to specify what to search for in a text. It is short for Regular Expression. When you search in a text, you can use a pattern to describe what you are searching for. RegExp IS this pattern.. and a simple pattern can be a single character. […]

JavaScript- Browser Detection.

September 26, 2009 by

1

Browser Detection Almost everything in this tutorial works on all JavaScript enabled browsers. There are also some things that just don’t work on certain browsers, especially on older browsers. Sometimes it can be very useful to detect the visitor’s browser and then serve your way up to the appropriate information. The best way is to […]