Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
2k views

What is a selector engine?

I've seen news of John Resig's fast new selector engine named Sizzle pop up in quite a few places, but I don't know what a selector engine is, nor have any of the articles given an explanation of what ...
7
votes
3answers
867 views

Improving Simple JavaScript Inheritance

John Resig (of jQuery fame) provides a concise implementation of Simple JavaScript Inheritance. His approach inspired my attempt to improve things even further. I've rewritten Resig's original ...
1
vote
1answer
41 views

Getting the class name to show up in the console when using Resig's Simple JavaScript Inhertiance

I'm using Resig's Simple JavaScript Inheritance to create my classes. The only thing I don't like about it so far is that when I log an object created with this library to the console, it's name is ...
0
votes
1answer
93 views

John Resigs Micro Templating vs JQuery Templates or others?

I've been using John resigs neat micro templating javascript on a project I'm working on. The project pulls down a JSOn object and spits out a table with a bunch of input fields like so: This works ...
0
votes
1answer
382 views

explanation about prototype.js function binding code

From: http://ejohn.org/apps/learn/#2 Function.prototype.bind = function(){ var fn = this, args = Array.prototype.slice.call(arguments), object = args.shift(); return function(){ return ...
0
votes
2answers
402 views

jquery - how to make an iframe from a script i found into an ajax injection?

I'm wondering how i would change this appended iframe: $("#GB_window").append("<iframe id='GB_frame' src='" + url + "'></iframe>"); into a div. Is there a way to change this so that i'm ...