Skip to content


JQuery on Rails

The JRails library is a useful tool for programmers working on Rails.

jRails is a drop-in jQuery replacement for Prototype/script.aculo.us on Rails. Using jRails, you can get all of the same default Rails helpers for JavaScript functionality using the lighter jQuery library.

I plan to start programming with Rails soon so I’ll definitely be adding this to my arsenal.

Posted in JavaScript, Quick Link, Resources.

Tagged with , , , , .


Learning Adobe Air

Jonathan Snook has a great article on 24ways.org about creating an Adobe Air application using JavaScript, HTML and CSS. This is a great way for web developers who don’t know much or don’t care about Flash to get started.

I’d like to push this further by creating a desktop app that can also live on the web. Maybe even communicate with the desktop version.

You can check out Snook’s article here.

Posted in Adobe Air, HTML/XHTML, JavaScript, Quick Link, Resources.

Tagged with , , , , , .


Scripting for the iPhone

There’s a lot of buzz in the web development community about developing for the iPhone. I’ve been following this topic since the Apple announcement last month.

I’m all for it. This is a big step for web development on portable devices. I hope other pda and smartphone makers follow Apple’s lead. I took a quick look at the developer documentation today and found some interesting things I wanted to point out.

  • Integrate phone calls, maps and emails using links. Mail and map links are not different from what we use on normal browsers (“mailto:anemail@domain.com” and ” http://maps.google.com?address”) but phone links use a new url format which starts with “tel:”.
    Here’s an example:
    1
    
    <a href="tel:1-123-444-5555">Call Me</a>
  • Assign an iPhone style sheet with the link tag.
    1
    2
    3
    4
    5
    
    <link 
      media="only screen and (max-device-width: 480px)"
      href="iPhone.css"
      type="text/css"
      rel="stylesheet" />

    This is new to me. Seems like its part of the CSS3 recommendation.

  • iPhone doesn’t support window.showModalDialog(), mouse-overs, hover styles, tool tips, java applets, flash, plugin installation or custom x.509 certificates.
  • PDFs, Cookies and user-initiated window-open calls are supported but there’s a limit of 8 pages (8 open windows) in page view.

Here are some iPhone third party apps:
http://www.launchpadhq.com/
http://www.37signals.com/svn/posts/502-ta-da-list-for-iphone
http://digg.com/iphone

Posted in Mobile.

Tagged with , , .


Tips to Build PHP Web App in 66.5hrs

Here’s a blog post about one guy building an full blown dating site called Mingle2 in 66.5 hours. I’m not sure how good the application is but the tips are pretty good.

Posted in Quick Link.


YUI Theater

Checkout this post on the YUI blog about JavaScript videos in the YUI Theater. Its a great intro to the fundamentals of JavaScript and some more advanced topics if you check out the related videos also presented by Douglas Crockford.

Posted in Quick Link.


Welcome to a blog about JavaScript!

This will be my third blog attempt. I’m not much of a writer so I decided to create a blog about my main niche… coding web sites. I don’t claim to be a web coding expert and I don’t want this blog to go in that direction. The main reason I started this blog is for the knowledge sharing and feedback from all the great brains out there.

I hope to build this blog into something useful for the average web coder who’s looking to expand his/her knowledge in JavaScript, CSS, XHTML and other web technologies. Feel free to contact us with any feedback you may have about the blog or anything else.

Posted in Site News.