Archive

Archive for the ‘Web Design’ Category

jQuery latest stable release = v1.9.0

January 20th, 2013 No comments

jQuery latest stable release = v1.9.0 as on date.

v2.0.0 Beta is also ready but v2 will not run on IE 6,7 & 8 – referred to as oldIE.

So in future you will have to use:

<!--[if lt IE 9]>
    <script src="jquery-1.9.0.js"></script>
<![endif]-->
<!--[if gte IE 9]><!-->
    <script src="jquery-2.0.0.js"></script>
<!--[endif]-->

More info

VN:F [1.9.18_1163]
Rating: 0.0/5 (0 votes cast)
Categories: Web Design

Why you should upgrade to HTML5?

January 10th, 2013 No comments

image

image imageimage image image image image image image image image image image image image image image image image

VN:F [1.9.18_1163]
Rating: 5.0/5 (3 votes cast)
Categories: Web Design

HTML5 free Microsoft Exam

December 28th, 2012 No comments

Recently I passed 070-480: Programming in HTML5 with JavaScript and CSS3. Please make sure of the opportunity by using the promo code “HTMLJMP” in Prometric exam scheduling website.

This offer is valid till 31, March 2013 only.

This exam is a prerequisite for MCSD Web & Windows Developer

The exam was neither easy nor tough. Expect questions which uses jQuery as well.

VN:F [1.9.18_1163]
Rating: 0.0/5 (0 votes cast)
Categories: ASP.NET, News, Web Design

Fabric.js

December 28th, 2012 No comments

 

Fabric.js is a powerful and simple Javascript canvas library. Fabric provides interactive object model on top of canvas element. Fabric also has SVG-to-canvas (and canvas-to-SVG) parser

Using fabric.js, you can create shapes like rectangle, circle, polygons and transform (move/scale/rotate). It allows you to edit on canvas itself.

URL: http://fabricjs.com/

Checkout the demos here – http://fabricjs.com/demos/

VN:F [1.9.18_1163]
Rating: 3.0/5 (1 vote cast)
Categories: Web Design

CSS Order Priority Tips and Tricks

December 8th, 2012 No comments

Found this a good reference.

VN:F [1.9.18_1163]
Rating: 0.0/5 (0 votes cast)
Categories: Useful Links, Web Design

Online forms – state or country first?

October 23rd, 2012 No comments

This is a usability issue I see from the days which we had <= 14.4 kbps internet connections.

Especially when the form is asynchronous, I think the user must be asked for Country then State/Province or City.

image

VN:F [1.9.18_1163]
Rating: 5.0/5 (2 votes cast)
Categories: Web Design

Microsoft TypeScript [Preview]

October 11th, 2012 No comments

TypeScript is a free and open source programming language from Microsoft. We can say it as a superset of JavaScript. It adds optional static typing and class-based object oriented programming to the language.

More details: http://www.typescriptlang.org/

Codeplex: http://typescript.codeplex.com/

Visual Studio 2012 developers can download TypeScript editor plugin from this site.

VN:F [1.9.18_1163]
Rating: 0.0/5 (0 votes cast)
Categories: News, Web Design

jQuery Thickbox – Refresh parent when closing dialog

June 27th, 2012 No comments

This patch is for Thickbox 3.1

1. Open the non-compressed version of thickbox.js

2. Find function tb_remove(). This will be line# 268 if you have correct version

3. Add parent.location.reload(1); above return false; statement.

4. Done.

The code will look like this:

function tb_remove() {
 	$("#TB_imageOff").unbind("click");
	$("#TB_closeWindowButton").unbind("click");
	$("#TB_window").fadeOut("fast",function(){$('#TB_window,#TB_overlay,#TB_HideSelect').trigger("unload").unbind().remove();});
	$("#TB_load").remove();
	if (typeof document.body.style.maxHeight == "undefined") {//if IE 6
		$("body","html").css({height: "auto", width: "auto"});
		$("html").css("overflow","");
	}
	document.onkeydown = "";
	document.onkeyup = "";
 
    parent.location.reload(1); // Patch - Newly added line
 
    return false;
}
VN:F [1.9.18_1163]
Rating: 5.0/5 (3 votes cast)
Categories: Code Snippets, Web Design

SharePoint 2010 Editions Comparison

June 24th, 2012 No comments

Check here to find out the differences between Foundation, Standard and Enterprise editions.

http://sharepoint.microsoft.com/en-us/buy/Pages/Editions-Comparison.aspx

Extract pasted here:

Read more…

VN:F [1.9.18_1163]
Rating: 5.0/5 (2 votes cast)
Categories: Useful Links, Web Design

Make HTML layouts easily

February 3rd, 2012 No comments

Here is an awesome website for web designers to generate layouts easily.

 

http://pageblox.com/

VN:F [1.9.18_1163]
Rating: 0.0/5 (0 votes cast)
Categories: Web Design