Archive for category 'jQuery'
First Open Source Project
I just signed up for an account with Bitbucket and created my first project. I am going to be creating an open source bug tracker built on Codeigniter 2. I am going to model it based on JIRA which is a JSP bug tracker, but I have a few more plans for it. It’s just … Continue reading
$(“#objectID”) != document.getElementById(“objectID”)
Using document.getElementById(“…”) in plain ol’ Javascript will return a reference the DOM element by the given name. In jQuery, we use $ for everything. So I assumed using $(“#…”) would be the same thing. This is wrong. $(“#…”) will return an associative array (object) which is what allows us to change properties of the DOM … Continue reading
Image Load Event Binding With IE Using jQuery
I ran into a strange issue today. I wrote a plugin for jQuery that used the load events from jQuery attached to an image. This plugin worked perfectly in Firefox, Safari, and Opera on PC, Mac, and Ubuntu. The only browser that it had problems with was IE. I know. Completely unheard of right? I … Continue reading
XML Namespaces With jQuery (Solved)
If you have come to this post, you are in the same situation I was in. Many Javascript/AJAX framesworks like jQuery do not work with XML namespaces. I came upon an instance at work where I needed to display data from an RSS feed from Zoho Creator. Part of the problem was some of the … Continue reading
