Aaron Saray

open source programmer,
web developer

entrepreneur, author
and musician

My Blog

contains PHP, Web and business/entrepreneurial related content. Please join in the conversation!

Category Archives: javascript

How I fixed the Javascript error with wp-codebox

I’ve been using the wp-codebox plugin for a while… and an upgrade came today! Well, I applied the upgrade – and now every page that has a code box on it was causing my JS to crash. The first thing … Continue reading

Posted in javascript, wordpress | Tagged , | Leave a comment

JfbConsole – chainable Firebug Console jQuery plugin

I find myself wanting to document various different attributes mid development on my jquery code. I have created the following function to help use FireBug’s console access code effectively in the jQuery fashion. ?View Code JAVASCRIPT1 2 3 4 5 … Continue reading

Posted in javascript, jquery | Tagged , | Leave a comment

Twitter live search updates page

I decided it would be kind of cool to make a page that combined a bunch of twitter hash tags or just tweets in general. Here are the details…

Posted in javascript | Tagged , | Leave a comment

Unknown function _popupControl()

In my Javascript Error Handler post, I discussed how I track user and client side errors. Recently, my error logs became inundated with tons of javascript errors. The function _popupControl() is undefined. After a little googling, I found out that … Continue reading

Posted in javascript | Tagged | 3 Comments

Javascript error handler

A while ago, I saw a website that provided a javascript error reporting service. You implemented some code and then they would send you reports on javascript errors on your site. I thought, this can’t be that hard. So I … Continue reading

Posted in javascript, PHP | Tagged , | 5 Comments

Figuring out Price Before Tax

A lot of the time I give quotes including taxes. Every once in a while, someone is curious about what the tax is on a service. I was messing around the other day and came up with this Javascript function. … Continue reading

Posted in javascript | Tagged | Leave a comment

Enabling Javascript Specific CSS

While reading the blog post about Enabling Javascript specific CSS and the comments, I started thinking about my own ways to implement this. And how to do it validly. Why Use Javascript Specific CSS Believe it or not, we still … Continue reading

Posted in CSS, javascript | Tagged , | Leave a comment

IE JS Error: Expected identifier, string or number

I just ran into this a bunch – works fine in FireFox … of course. Well apparently, Internet Explorer won’t allow you to have a trailing comma in a array or object definition. Let me show you: ?View Code JAVASCRIPT1 … Continue reading

Posted in javascript | Tagged | Leave a comment

Flash of Unstyled Content – in FireFox 3

So I’ve heard of the Flash of Unstyled Content before – but never really had this problem. I always use a LINK tag for my stylesheets. However, I just ran into it today – in FireFox even with a LINK … Continue reading

Posted in CSS, html, javascript | Tagged , , | Leave a comment

Form Submit: Internet Explorer behaving badly

I just want to make a micro blog here. Just a tiny lil blog. Internet Explorer Does Not Submit Form on Enter Correct! Instead, I load my page with this jquery ?View Code PHP1 2 3 4 5 6   … Continue reading

Posted in html, javascript, jquery | Tagged , , | Leave a comment