Writing a iPhone version of a website it can be a slight pain. After writing some code you have to upload it to a public location so you can browse to it with your phone. Even though you can browse the site you are still somewhat limited in your debugging options once your site is ...
I’m a big fan of MVC so far but there are certainly parts that I don’t like. For example, who is responsible for logical changes to a HTML markup in a view? The Controller? The Model? Personally, I don’t think either of them should which leaves the View to pick up the slack.
But the problem ...
I’m pretty psyched about jsshell right now. The user count is growing, I’ve had a lot of good reviews — I’ve even noticed that my blog is being hit with search for it.
I’ve also been getting feedback of ideas and suggestions which I’ve implemented and uploaded to the extension website (so you can go download ...
In my previous post I made some code available that would allow you to access external templates all in the same jQuery chain. Unfortunately, I discovered a few bone-head mistakes in the code the next day while I was using it.
The new code has been uploaded and the bugs (the ones I found) have been ...
In my last blog post I wrote about an interesting way to work with server side templates and avoid using callbacks to work with the elements you created. I worked on the concept some more and added some simple templating capabilities along with the ability to apply inline or external data. I’m posting this plugin ...
New code available: I’ve written a follow up post about this topic with new code and new features.
If you’ve ever tried building a jQuery object from scratch then you’ve probably found that it is a little time consuming and probably a little ugly by the time you’re finished. You could put additional HTML templates as ...
I’m not sure the community stance on passing around delegates as arguments but personally I love it. I think there is something magical about the way you can provide instructions on how how to do something and then pass it into another method and let it do its job without needing to think about it. ...
Today you can download jsshell 2.0. This new version has a lot of new features.
If you’ve never used it before you might want to watch the jsshell screencast to help you get caught up on what it does and how it works.
Basic Usage
Here are the basics of using jsshell.
CTRL + Enter: Runs all of the ...
The new jsshell is here! Go read about the release at this blog post
Last post I shared an extension I was working on for Chrome called jsshell — The name is terrible since I found out it is also the name of a computer virus. I suspect many users would be confident to download and ...
The new jsshell is here! Go read about the release at this blog post
I started messing around with writing a extension for Chrome yesterday and I’m surprised just how easy they are to put together. With the exception of a little configuration the whole process is HTML and JavaScript — something that most of us ...