Archive for the “JavaScripting” category
HTML5 Canvas -tag API explained
by jp on October 16, 2009
Great presentation of Canvas -tag and how to draw it in JavaScript. Canvas View more documents from Dmitry Baranovskiy.
jQuery IntelliSense support in VS
by jp on September 29, 2008
I was hoping that it would happen but I never believed that Microsoft would involved themselves in OpenSource library. But luckily I was wrong. ScottGu writes: I’m excited today to announce that Microsoft will be shipping jQuery with Visual Studio (…)
Processing visualization library in JavaScript
by jp on May 10, 2008
John Resig (founder of jQuery) has released his JavaScript port of the Processing visualization library today using Canvas. This is an excellent addition to the world of JavaScript graphics programming, it works best on Firefox 3.0. I am going to (…)
Atlas will be Microsoft AJAX Library
by jp on September 12, 2006
This is pretty obvious but I am going to make post anyway since I need to start to fork yet another JavaScript library. Atlas Javascript Library will be renamed to Microsoft AJAX Library and server-side stuff ASP.NET 2.0 AJAX Extensions. (…)
Aptana Javascript editor
by jp on August 26, 2006
A robust, JavaScript-focused IDE for building dynamic web applications. Built top of the eclipse. Worth of checking out. http://www.aptana.com/
jQuery 1.0 Released
by jp on August 26, 2006
jQuery 1.0 Released. Version 1.0 of the lightweight JavaScript effects / DOM / Ajax library has been released. Here are some relevant links to get you started: jQuery 1.0 jQuery 1.0 – Compressed API Documentation (Partial) Test Suite
Spam blocking with JavaScript and CSS
by jp on August 18, 2006
I got inspired by kari patila’s post where he uses CSS class to hide spam text using CSS and I wrote something my own by using JavaScript and content to write email address. .email:after { content: “@jpkeisala.com”; } <a class=”email” (…)
When JavaScript is cool…
by jp on August 8, 2006
This is really cool especially for me old dhtml dude/today XSLT dude (and seems like AJAX dude tomorrow). $(“ul#menu>li[ul] a.active”).toggle(function(){} So, what is going on above? I am writing CSS selectors combined with XPath to target specific elements. Library that (…)
Yahoo Mail Worm
by jp on June 15, 2006
Now that the Rich Internet Applications are getting more and more popular, just like any other environment we are getting problems from the bad guys. Now that the door is opened publicly there will be lots of crackers crawling through (…)
Creating Bar Graphs with CSS
by jp on December 28, 2005
Polls or graphs are usually images generated from desktop software or web scripts perhaps sometimes flash+xml, and when it comes to web it is too much resource consuming to generate image on the fly. Since we don’t have CANVAS or (…)