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)
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)
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)
Found this a good reference.
VN:F [1.9.18_1163]
Rating: 0.0/5 (0 votes cast)
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.

VN:F [1.9.18_1163]
Rating: 5.0/5 (2 votes cast)
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)
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)
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)
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)
Recent Comments