Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
5answers
696 views

jQuery Optimization/Best Practices

Ok saddle up cowboys, because this is going to be a long one. I have been spending the morning going through some of my old code and I'm left wondering about best practices and optimzation. In order ...
13
votes
3answers
4k views

What's the use of Array.prototype.slice.call(array, 0)?

I was just browsing Sizzle's source code and I came across this line of code: array = Array.prototype.slice.call( array, 0 ); I looked up what the function is, but I came to the conclusion that it ...
8
votes
2answers
755 views

decoupling jquery, sizzle?

Does anyone have experience / insight re: decoupling jquery / sizzle? this is for general interest, but here's the scenario that triggered my question: ..i already have jquery in the project. ...
7
votes
2answers
286 views

jQuery: subtle difference between .has() and :has()

When used with the child selector >, the two variants of jQuery's "has" behave differently. Take this HTML: <div> <span>Text</span> </div> Now: ...
6
votes
6answers
216 views

jQuery Selectors, efficiency

I have been reading more lately about the efficiency of the different selector engines. I know that jQuery uses the Sizzle engine and this blog post about some jQuery stuff mentioned that the Sizzle ...
6
votes
2answers
1k views

CSS parser/abstracter? How to convert stylesheet into object

Is there a standard or reliable method already out there for a javascript framework such as jquery to parse a stylesheet into an object? Two reasons for why I'm wondering: I have seen a couple of ...
5
votes
4answers
1k views

IE Javascript error “Object doesn't support this property or method” within jQuery

For some reason, I am getting the following Javascript error in Internet Explorer 8 on line 3156 of jquery.js (version 1.4.3, non-compressed version): Object doesn't support this property or method. ...
5
votes
1answer
695 views

Slick vs. Sizzle — Pros and Cons of CSS selector engines

When would I want to use Slick and when would I want to use Sizzle? What are the pros and cons of each as a standalone CSS selector engine? How easily can Slick be used with JQuery? Can Sizzle be ...
4
votes
2answers
113 views

Is there a way to validate a Sizzle selector?

Is there a way to validate (verify that its constructed correctly) a Sizzle selector without running it?
4
votes
2answers
186 views

Does $(“body”) use Sizzle Engine?

I understand that $("#id") is faster because it maps to a native javascript method. Is the same true of $("body")?
4
votes
1answer
629 views

jQuery 1.4.4: How to find an element based on its data-attribute value?

I imagine this should be a pretty trivial task but using Firefox for Mac, 3.6.12 the following does not work: // assign data attributes $('.gallery li').each(function(i) { ...
3
votes
1answer
58 views

How to select an element which doesn't have a specific class name, using jQuery?

How could a Commando, like myself, select an element witch does not have a class named "active", using the infamous and powerful jQuery Sizzle CSS and everything else - Selector? I've tried with: ...
3
votes
1answer
382 views

jQuery 1.6.2 Upgrade causing problem with meta selector

This worked fine with 1.4. var ogimagetag = $('meta[property=og:image]').attr('content'); gives me Uncaught Syntax error, unrecognized expression: [property=og:image] The error seems to be ...
3
votes
1answer
193 views

Reverse Zen Coding

I'm writing a javascript unit test suite and one of the features I'd like to add is the ability to assert that a certain element and its children match a given HTML structure. My first idea is to use ...
3
votes
1answer
140 views

Can a sizzle selector evaluate a regular expression?

I need to select links with a specific format of URLs. Can I use sizzle to evaluate a link's href attribute against a regular expression? For example, can I do something like this: var arrayOfLinks ...
3
votes
2answers
616 views

Adding Sizzle js to my project breaks the project

I'm not entirely sure what's happening here. I have my code that exists like: var mycode = { init:function(){ //my code here } } //sizzle pasted here... (function(){ //sizzle code ...
2
votes
1answer
129 views

Is there a Sizzle/jQuery selectors implementation in C#?

I need to be able to simply specify elements from html in my C# application. I would just use Linq to Sql but this needs to be configurable/serializable to a string. I could of course use XPath but ...
2
votes
1answer
76 views

Very weird Chrome behavior in an open (focused) “select” element

Here's a <select> element: <select> <option>Hello</option> <option>Banana</option> <option>Balloon</option> ...
2
votes
1answer
65 views

jQuery - finding an element with multiple HTML tag attributes in it

Why using this: var parent = $('div.form.offer_mails'); var period = parent.find('input[type=checkbox,name=timeperiod]'); I get this (exception in my Mozilla Firefox Error Console): Error: ...
2
votes
1answer
259 views

Javascript find pseudo elements

So I've been work on a CSS selector engine, and I want to support pseudo-elements (::before, ::after, ::selection, ::first-line, etc). I noticed Slick, Sizzle, and some other popular engines seem to ...
2
votes
1answer
117 views

Can't iterate array returned from Sizzle

From my understanding Sizzle returns an array of objects (DOMElements), I am trying to walk that array of objects in a for loop but I am getting errors. When I try to get a property with the ...
2
votes
2answers
360 views

Minified Sizzle

I can't find minified sizzle =( And if i trying to make it myself by yuicompressor, after that, some features not work. Please help.
2
votes
1answer
312 views

Explain a block of crazy JS code inside Sizzle(the CSS selector engine)

So, here is the function for pre-filtering "CHILD": function(match){ if ( match[1] === "nth" ) { // parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6' var test ...
2
votes
2answers
2k views

Style table cells using jQuery

I'm trying to style table cells within a table based upon whether or not the contain the character | in the url or not (don't ask, dealing with SharePoint). Sample HTML; <table> <tr> ...
2
votes
2answers
3k views

How to select table cells without selecting nested table cells in jQuery

I want to select only the first level of 'td' elements in a table and not the cells of any nested tables. eg: <table id="Outer"> <tr> <td> --this one ...
1
vote
2answers
95 views

replace dojo.query with Sizzle?

Dojo has got the slowest selectors compared to other JS frameworks. I was wondering if it was possible to use Sizzle within Dojo to make dojo.query use it behind the scenes? I think it is used in ...
1
vote
5answers
71 views

How to get a specific jQuery item from a list of items?

I have this: <ul> <li>first</li> <li>second</li> <li>third</li> <li>fourth</li> </ul> Then I select it all with jQuery: ...
1
vote
1answer
67 views

Looking for info regarding internal implementation of jQuery selector engine (sizzle)

I'm looking for information regarding what Sizzle (jQuery) does internally when you run a selector against it. Ideally either someone that's done a write-up/blog post about how different browsers or ...
1
vote
0answers
177 views

Dynamic Adsense Insertion With JavaScript

I can't believe how hard this is to find, but even in the Google developer docs I can't find it. I need to be able to dynamically, only with JavaScript insert adsense. I also looked on StackOverflow ...
1
vote
3answers
266 views

Get iframe contents with a jquery selector

Is there anyway to access an iframe's contents via a selector? Something like this: $("iframe::contents .my-foo") I'm constantly accessing an iframe's contents for a project I'm currently working ...
1
vote
1answer
99 views

How do I extend jQuery's selector engine to warn me when a selector is not found?

Say I make a mistake when I'm trying to find an element and I make a typo, like $('lsdkfj'). Instead of jQuery returning me an empty array, I'd like to return an error message in the console, like ...
1
vote
1answer
129 views

jQuery `a[href=#/example]` cross-browser issue

So I'm trying to get jQuery to make the following selection: $("a[href=#/example]") and I have an anchor <a href="#/example">ex</a>. When I try this selector out in chrome, IE8, FF, or ...
1
vote
1answer
204 views

Prototype 1.7 - attribute selectors got broken?

I recently upgraded from Prototype 1.6.1 to 1.7, and I noticed that a part of my site's JS got broken. I'm esentially doing this: $$("*[required=1]").each(function (el) { // stuff }); This is ...
1
vote
2answers
439 views

Multiple “not” conditions in prototype $$ CSS selector

I'm trying to exclude two cases in my CSS selector. Currently the selector looks like this: $$('select:not([class=session])').each(function(){ //blah blah }) But i want to exclude another class ...
1
vote
2answers
129 views

What jQuery selector can I use to match these HTML elements (requires “:contains()”)?

I'm trying to find a jQuery selector that will match only the element that directly contains the text "PDT" in the following two examples (truncated for brevity): <div> <p> ...
1
vote
1answer
434 views

Exception thrown in YUI: “Sizzle” is not defined!

We are using HTML Unit v2.6 with Web-Harvest and extended its functionality to create a new element <web session="sess1" browser="firefox2"> <web-getpage ...
1
vote
3answers
390 views

Is there a JQuery DOM manipulator/CSS selector equivalent class in PHP?

I know that I can use DOMDocument and DOMXPath to manipulate XML files. But, I really love JQuery, and it would be great if there was something more like JQuery in the PHP world that I could use for ...
1
vote
3answers
728 views

jQuery/Sizzle selector to find current element's parent?

Is there a way I can get the selected element's parent using only jQuery's/sizzle's CSS selectors? I need to be able to get an element's parent while using jQuery, but I'm unable use ...
1
vote
4answers
904 views

Using jQuery's Sizzle Engine to find a class (advanced)

What I am attempting to do is see if a jQuery object (or even DOM element for that matter) contains a particular class using the same selectors as the Sizzle engine. jQuery publicly exposes Sizzle ...
1
vote
1answer
688 views

makeArray function in Sizzle (jQuery 1.3)

I've been having a lot of problems with jQuery 1.3.2 on only one of my sites. It's a Joomla site, so Mootools is included on the page as well (and it's too difficult to remove Mootools). Basically the ...
0
votes
3answers
52 views

jQuery .prev() of a type regardless of it's parent etc

is there a simple way to get the previous occurrence of an element in the DOM? If I'm looking at #text3 and I want to get ahold of the previous input #text2. <div> <input id="text1" ...
0
votes
2answers
72 views

How to make jQuery's 'filter' function work correctly for SVG nodes?

Say I have the following SVG and jQuery: <g id="test"> <rect> <text>demo</text> </g> $('#test').filter('text').each(function(){ // do something }); The ...
0
votes
4answers
71 views

Is there an OR combinator in jQuery/Sizzle? [closed]

Possible Duplicate: jQuery OR Selector? I would like to for each select in the matched set find the first option that either has a class placeholder or an empty value something along the ...
0
votes
3answers
53 views

Getting a css selection expression from an element

I'm looking for the best way to get a selection expression for an element by passing the element , i.e. : i want the reverse of sizzle/slick ... i want to pass an element i've clicked on and get a ...
0
votes
1answer
86 views

How to compile and set up Sizzle, an open source Sawzall implementation for Hadoop, on Mac OS X?

'Sizzle is an open source implementation of the Sawzall programming language designed for interoperation with the Hadoop MapReduce and DFS stack.' https://github.com/anthonyu/Sizzle
0
votes
1answer
214 views

Can I use a selector engine like sizzle to compare css selectors?

Here's my problem: I'm writing a WordPress plugin that helps budding CSS authors see how css applies to their theme in real time. It's got a numer of nifty features, except one, which is pretty ...
0
votes
1answer
194 views

Need Help finding out howto use Twitter's @anywhere isFollowing/isFollowedBy methods

I am trying to check via the Twitter Javascript Api (see here) if a logged in user is following me on twitter. If not, i will display a followbutton. Right now i can't seem to find out how the command ...
0
votes
3answers
140 views

Sizzle selector syntax pattern of searchable items

I'm still learning how to use Sizzle selector. So far I know this: Sizzle('#blah') - searches the entire document for element(s) with id 'blah'. Sizzle('.blah') - searches the entire document for ...
0
votes
2answers
152 views

JavaScript - Having trouble with a click event

I am using sizzle to select various parts of the DOM. My code is below. The problem is that the onmouseup event is being triggered when the page is loaded instead of when the user interacts with the ...
0
votes
2answers
190 views

Including a minified js code in another js library

I want to incorporate a minified javascript library (for example http://sizzlejs.com/) into my own non minified javascript library. The reason is that my library plugs into other websites and I don't ...

1 2