Skip to main content

Bug Tracker

Side navigation

#2521 closed bug (fixed)

Opened March 15, 2008 12:23PM UTC

Closed May 13, 2008 12:43AM UTC

Last modified March 15, 2012 01:52AM UTC

Internet Explorer doesn't seem to like attributes

Reported by: nicolab2108 Owned by:
Priority: minor Milestone: 1.2.4
Component: core Version: 1.2.3
Keywords: Cc:
Blocked by: Blocking:
Description

Hi, apologies if this is already mentioned or there is a solution to it. If there is a solution I'd appreciate being directed toward it as I have looked everywhere and just...can't find it :(

<script type="text/javascript">
//<![CDATA[
$("table").removeAttr("cellspacing");
$("table").attr("cellspacing", "10");
//]]>
</script>

I'm using jQuery to alter the cellspacing of tables on a site because I am unable to edit the HTML myself. I have used a cellspacing of 10 just to make sure it's actually doing something :P

Firefox etc are absolutely fine with it, but Internet Explorer refuses to acknowledge it at all.

Attachments (0)
Change History (3)

Changed March 17, 2008 04:29PM UTC by davidserduke comment:1

The 'cellspacing' attribute might have to be added to the jQuery.props list to make this work. Till then a workaround to fix the first table in the page (for example) is

$("table").get(0).cellSpacing = 10;

http://msdn2.microsoft.com/en-us/library/ms533551(VS.85).aspx

Changed March 18, 2008 11:40PM UTC by flesler comment:2

This should fix this.

Changed May 13, 2008 12:43AM UTC by flesler comment:3

resolution: → fixed
status: newclosed

Fixed at [5574], check #2548.