The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Add a text under the first post?

2 posters

Go down

Solved Add a text under the first post?

Post by Mati Tue Oct 24 2023, 21:10

I'm using this script to add some text under the first post on every topic page but it doesn't work.

Code:
$(function(){
$('.post:first-child').after('<div class="fs-spotlight">Hello member and welcome to Forum Services!</div>');
});


Last edited by Mati on Sat Oct 28 2023, 19:47; edited 1 time in total
Mati
Mati
Hyperactive

Posts : 2020
Reputation : 330
Language : HTML, CSS & JavaScript
Location : Forum Services

https://forumservice.forumotion.com/

Back to top Go down

Solved Re: Add a text under the first post?

Post by Razor12345 Tue Oct 24 2023, 21:34

Good evening!

1) Because you can't work with pseudo classes in JS/jQuery
2) Because the after method inserts elements, not HTML code.

To insert HTML code you need to use the insertAdjacentHTML method, which has no analogue in jQuery

Correct code:

Code:
$(document).ready(function() {
  document.querySelectorAll('.post')[0].insertAdjacentHTML('afterend', '<div class="fs-spotlight">Hello member and welcome to Forum Services!</div>');
});

Result:

Add a text under the first post? Scree466


Add a text under the first post? Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1476
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

Mati, SarkZKalie and TonnyKamper like this post

Back to top Go down

Solved Re: Add a text under the first post?

Post by Mati Tue Oct 24 2023, 22:17

Thanks, can you also check your pm.
Mati
Mati
Hyperactive

Posts : 2020
Reputation : 330
Language : HTML, CSS & JavaScript
Location : Forum Services

https://forumservice.forumotion.com/

Back to top Go down

Solved Re: Add a text under the first post?

Post by Razor12345 Wed Oct 25 2023, 16:17

Is your request complete?
if your request is complete, please mark it as Solved.


Add a text under the first post? Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1476
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

Back to top Go down

Solved Re: Add a text under the first post?

Post by Mati Sat Oct 28 2023, 19:48

You can lock it now.
Mati
Mati
Hyperactive

Posts : 2020
Reputation : 330
Language : HTML, CSS & JavaScript
Location : Forum Services

https://forumservice.forumotion.com/

Back to top Go down

Solved Re: Add a text under the first post?

Post by Razor12345 Sat Oct 28 2023, 19:57

Problem solved & topic archived.
Please read our forum rules: ESF General Rules


Add a text under the first post? Screen51
Razor12345
Razor12345
Support Moderator
Support Moderator

Male Posts : 1476
Reputation : 262
Language : Ukr, Rus, Eng
Location : Ukraine

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum