Senz
Member since Dec 13, 2013
- Profile: /members/11471-senz.htm
- Comments: 2
Recent Blog Comments By Senz
-
Testing Which ASCII Characters Break JSON (JavaScript Object Notation) Parsing
Posted on Jan 13, 2014 at 12:10 PM
JSON should not be confused with JS plain object notation (hashes or dictionaries), since it is a separate from ECMAScript standard Also, more info http://timelessrepo.com/json-isnt-a-javascript-subset and https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON?redir... read more »
-
Your jQuery Selector Context Can Be A jQuery Object
Posted on Dec 13, 2013 at 8:25 AM
contextFactory = function(selector) { var ctx = $(selector); return function(selector) { return $(selector, ctx); }; }; $popup = contextFactory(".jsPopupRegister"); $popup("a") more readable IMO... read more »