Jump to content

replace backgrounf images on page with a new image


toolman

Recommended Posts

Hi,

I have some background images on the page, however, I want to replace them with a new background image using jQuery.

I have this, but it doesn't work:

$('td.my class').css('background-image','url(http://www.mywebsite.com/new-image.png)');



Any ideas what I have wrong?

Thanks

Actually, the selector "td.my class" looks for an XML tag named <class> which is a child of a <td> element with a class of 'my'. Class attributes in HTML can be space-separated lists of class names, so as to assign multiple class names to an element.

Do you literally have <td class="my class"> in your HTML? If so, try querying $('td.my.class').

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.