inherit
169267
0
Nov 29, 2024 7:30:04 GMT -8
Mike
Praise God Almighty!
1,534
July 2011
riccetts
|
Post by Mike on Feb 20, 2014 10:39:00 GMT -8
I have been reading w3school jquery tutorials and I not sure to use append or add,but what I want to achieve is putting an image in the thread list description. I want the same image for all tr in the list.I have my code below can someone please explain to me how to set this up?
$(document).function(){ $('div.container.threads > div.content.cap-bottom > table.list > tbody > tr.thead').append(pb.plugin.get('thread_description_images').settings.image_url; }
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Feb 21, 2014 1:34:19 GMT -8
you are appending just the url. if you want to append an actual image you need to append an image element:
.append($('<img src="'+pb.plugin.get('thread_description_images').settings.image_url+'">'));
|
|
inherit
169267
0
Nov 29, 2024 7:30:04 GMT -8
Mike
Praise God Almighty!
1,534
July 2011
riccetts
|
Post by Mike on Feb 23, 2014 9:15:18 GMT -8
WormopolisI have been reading w3school jquery tutorials and I not sure to use append or add,but what I want to achieve is putting an image in the thread list description. I want the same image for all tr in the list.I have my code below can someone please explain to me how to set this up? $(document).function(){ $('div.container.threads > div.content.cap-bottom > table.list > tbody > tr.thead').append(pb.plugin.get('thread_description_images').settings.image_url; } Ok I made changes and I can't seem to get the image to show. It now looks like: (BTW I'm in the js part) $(document).function(){ $('div.container.threads > div.content.cap-bottom > table.list > tbody > tr.thead').append($('<img src="'+pb.plugin.get('thread_description_images').settings.image_url+'">')); } Any Idea why?
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Feb 23, 2014 10:28:24 GMT -8
none of the > needs to be in there. but also tr.thead doesnt exist.
|
|