Archive for August, 2006

Aptana Javascript editor

A robust, JavaScript-focused IDE for building dynamic web applications. Built top of the eclipse.  Worth of checking out.  http://www.aptana.com/

Leave a Comment

jQuery 1.0 Released

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:

Leave a Comment

Spam blocking with JavaScript and CSS

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.

Leave a Comment

Web 2.0 logo creator

Web 2.0 logo

Leave a Comment

When JavaScript is cool…

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.

Comments (2)