Finally the plugin have some support for IE6 and 7. Read more on the current project page. I've also decided to gradually migrate the project to my Google Code project.
A jQuery plugin that makes the header of a table floating if the original header isn't visible due to scrolling. The plugin will automatically choose the thead tag as the header for a table. If thead isn't found it will search for rows marked with the class 'floating'. The behavior can be changed by the settings forceClass and markingClass. News 2012-08-19 This plugin is no longer maintained by me and this page will therefore not be updated anymore. 2011-01-04 1.4.0 ! Lazy loading of tables and performance optimations by Jason Axley 2010-08-02 1.3.0 ! Better ie6 support, http://plugins.jquery.com/node/16655 Fixed parameter name typo, http://plugins.jquery.com/node/16819 2010-07-08 1.2.0 ! Fixed a few bugs and added reinit and recalculate functions to the table. 2009-10-19 1.1.0 ! Better compatibility, better tested. There are still some problems with IE6 that i would like to have some help with. 2009-10-15 1.0.7 is out! With all fixes made
Today i ran into this warning when testing IE7 compatibility for a web project: Message: HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917) The problem is that the site has some JavaScript code that tries to modify the parent of a DOM-node from the a child node before the child is finished loading. Here's a short example of a how to get the error: <br /> <div id="parent"><div id="child">Same ol' child<br /> <script> document.getElementById('parent').innerHTML = 'New child'; </script><br /> </div></div> The content will still be replaced but with a warning in the console. To get rid of the warning just move the script out to the parent container, ie. <br /> <div id="parent"><div id="child">Same ol' child<br /> </div><script> document.getElementById('par
A small Ubiquity command for searching Spotify . To be able to search you must have: The Spotify application installed on your system. Be able to open Spotify URI's from the browser . Download & Install The plugin can be installed and subscribed to at:   http://static.slackers.se/pages/javascript/ubiquity-spotify The command can be downloaded from the subversion repository at: ubiquity.spotify.js
Comments