Plugins

User login
Can't find a Plugin?

Can't find a Plugin you are looking for? Check out the jQuery Wiki page.

Are you a plugin developer? Please move your plugin over to this site.

Website Bug or Feature Request?

Found a bug on the new jQuery Plugin website? Have a feature request?

Submit it to the jQuery Plugin website issue queue to ensure it is noticed!

patch for radio buttons in IE <7


Project:appendDom
Version:1.0.0
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:active
Description

ref: http://mg.to/2006/02/27/easy-dom-creation-for-jquery-and-prototype#comme...
patch to fix:

      var el = (typeof(template[element].tagName) === 'string') ?
        (template[element].tagName === 'input' && jQuery.browser.msie && parseInt(jQuery.browser.version,10) < 7) ?
        document.createElement("<input name='" + template[element]['name'] + "'/>") :
        document.createElement(template[element].tagName)
        : document.createTextNode('');

Thanks

Simon.