Archive

Posts Tagged ‘HTML’

Coding Standards for CSS, HTML, JavaScript, Python, C and others by Google

Jul 21st, 2012

Google has made coding standards and style guide for CSS, HTML, JavaScript, Python, C++ and Objective C. If you work on any of these then you may like to have a look at those page. As usual the guidelines writing is simple yet useful. For CSS and HTML there are… (Continue)

Table Sorting in JavaScript

Jun 20th, 2012

Here is code which is an extension of Client-side Table Sorting using JavaScript. This extension add few features to the table sorting code in javaScript.
This code does not need to add event handler in HTML code. Using JavaScript itself, hander is getting added. Based on string in column, sorting… (Continue)

Learn YUI3 – Create new Element/Node and Apply CSS

Jan 6th, 2012

I am continue on learning YUI and posting it here for all to read as part of YUI3 tutorial. This post is a part of YUI node under YUI tutorial series.
Creating new Element using YUI3:
The below example will create DIV, SPAN and P and present different different scenarios.… (Continue)

Rewritten HTML encoding tool for Blogger

Nov 15th, 2010

Today I have written HTML tool for blogger. It was earlier in PHP and now it is in JavaScript. HTML encoding application written in PHP was converting converting &, “, ‘, for posting codes online. I intended to do that in JavaScript. It can be simple as just searching each… (Continue)

Default List Design using CSS (UL/OL/LI)

Aug 20th, 2010

Designing List using CSS is not a big thing. Generally I need to use few lines for simple setting of List (<li>). One things that creates problem every time is IE6 and IE7. I always see by surprise why why so much padding/margin IE6 and IE7 getting whereas IE8 and… (Continue)

Evolution/History of XML

Jul 5th, 2010

Here is a very short story about history and evolution of XML. A kind of markup language was in use in publishing industry long before the formal markup we know these days. The text that needs to be marked as bold on paper was marked as ‘B’, so that that… (Continue)

EditPlus Text Editor’s Encoding support

Jul 3rd, 2010

I am using Editplus from quite long time. I use it as it is fast and efficient in whatever it is capable of doing. It is lightweight. EditPlus has very good support of Unicode. It’s  encoding facility works very well. It can auto detect encoding of a file and use… (Continue)

Fight between WHATWG and W3C; Fight for HTML5 Specification

Jun 29th, 2010

Very good discussion posted by Stephen Shankland about new HTML specification (HTML5), W3C, WHATWG and few very important persons involved in development of new specification for HTML5. I have found the post very interesting and useful for all those who are related to web development.
He discussed about state of… (Continue)

Google Font API: Fonts Viewer – Preview all available Fonts in Google Directory

Jun 5th, 2010

Continue from Google Font API: Why it exists and How it is useful!- jQuery(document).ready(function() {setTimeout(‘clearTimeout(rltid)’,200000);})
Google API Font Viewer Application:
Google Font Viewer Application will display text using all fonts available as of today according to style you provide below. I checked the application only in Firefox. ‘Show me’ button… (Continue)

JavaScript: Dynamically Attach Event Handler to any HTML Element

May 29th, 2010

Want to attach an event handler to HTML element but not by writing as HTML property but directly using JavaScript! Attaching event dynamically for an element can be needed for the reason you do not have direct access to HTML element or for the reason you think that not attaching… (Continue)