/ Published in: Other
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$(document).ready( function() { if($.browser.mozilla) { $("form.cmxform").find("li > label").not(".nocmx").each( function(i) { span = document.createElement("span"); $(span).css({ display: "block", width: $(this).css("width") }); $(this).css("display","-moz-inline-box"); $(span).html($(this).html()); $(this).html(""); $(this).append(span); } ); } } );