Archive for August, 2006

Aptana Javascript editor

Saturday, August 26th, 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

Saturday, August 26th, 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:

Spam blocking with JavaScript and CSS

Friday, August 18th, 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” xhref=”http://www.jpkeisala.com/v6/#” mce_href=”http://www.jpkeisala.com/v6/#” onclick=”window.location = ‘mailto:’+this.innerHTML+’@jpkeisala.com’”>jp</a>

a bit ugly but i think it works.

Web 2.0 logo creator

Wednesday, August 16th, 2006

Web 2.0 logo

When JavaScript is cool…

Tuesday, August 8th, 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 makes this all possible is called jQuery

XPath is a part of a part of it’s jQuery expression language together with CSS.
jQuery is really worth of checking out.