670 reputation
1413
bio website
location
age
visits member for 4 years, 6 months
seen 1 hour ago
stats profile views 65

Jan
25
awarded  Critic
Jan
25
answered Models in Backbone.js
Jan
18
answered Function not defined - jQuery/Javascript
Dec
6
awarded  Yearling
Dec
6
answered Treat text as inseparable?
Dec
6
answered Pass Java Variables to Javascript Without Using Inline JS
Nov
13
answered jQuery Code Organisation (Also tips)
Nov
12
answered Javascript-firefox: Table Rows are impossible to highlight
Nov
4
awarded  Supporter
Nov
4
comment Script tags contained in jQuery AJAX response not evaluated when inserted into the DOM?
Infinitesloop is right. The script you're linking to does "document.write('<scr'+'ipt type="text/javascript" s'+'rc="' + RecaptchaState.server + 'js/recaptcha.js"></scr'+'ipt>');" Use directions from code.google.com/apis/recaptcha/docs/display.html#AJAX instead
Nov
1
comment jQuery GREP + JSON empty data filter
Assuming this is not a typo, what you posted is not valid JSON; you should be formatting it better at the source otherwise it won't parse right in JS.
Oct
27
answered Loading initial data in Backbone.js
Oct
26
comment Google Rich Snippets for iPhone apps isn't working
@Jenox refer: view-source:chillingo.com/sku.htm?sid=344
Oct
24
comment Site Loads to the Right, until finished, then centers
@bladefist that one works fine for me too on FF and chrome. Which browser are you seeing the reflow issue with?
Oct
24
comment Backbone.js - custom setters
Thanks. I considered this too, but this seemed to be step backward in terms of making it readable - overriding the set function or adding a new "setProperty" function which sets it in lowercase and then passes it into backbone set might be better. Unless I'm missing something?
Oct
21
answered Most efficient way to split a list into equal sized sublists using jquery
Oct
20
answered Google Rich Snippets for iPhone apps isn't working
Oct
20
answered Log javascript errors from another subdomain
Oct
20
comment Create a div with bottom half one color and top half another color
As an aside I would recommend using something like Sass mixins to avoid having to deal with writing 5 lines of code when you mean 1. Prefixtree may be another option if you're opposed to SASS and just want to get it done.
Oct
20
comment Create a div with bottom half one color and top half another color
Because the different browser vendor's can't get along :) The actual spec is the first one. The different browser vendors, however, have their own implementations. "-ms" line is for IE10+ and you can figure out which line is for each browser by looking at the other prefixes. Here's the official spec Here's an Opera blog explaining it