Search Stylesheet Selectors with MooTools
You should already know that MooTools has Fx.Morph, that allows you to animate multiple css properties on an element and you can also pass it a selector string so you don’t have to type out all of the properties. Well, you can also pull these properties by using an undocumented method in MooTools, as I [...]
Sly, New Selector Engine & How to Use in MooTools
You’ve heard of selector engines right? The engine that parses the HTML to match a string argument to return matching HTML elements? How about Sizzle and Peppy (two fast selector engines) that was released? Or how a couple JS frameworks were implementing Sizzle and the MooTools dev team decided not to follow suit? Now, have [...]
IE7 CSS Pseudo Selector Slowdown?
Have you ever experienced major slowdown using IE7? It may NOT be memory related. I came across this issue while working on a bug for GameSpot. Users were complaining that the user experience was lagging. It’s more noticeable with the forums, where the users would drag the scroll bar in long threads, but the page [...]
Qualified Selectors in MooTools
My friend Mike Horn asked me to come up with a solution for a pseudo selector in MooTools that John Resig wrote about for jQuery. To sum it up, the pseudo selector basically grabs the element that “has” or contains the passed-in element. After taking a look at that I came up with something.