I have multiple divs with the class named day-number. I want to put some text after each instance. So this works great . .
$('.day-number').after('Put this after');
I now need to include something inside the .after() that is the .text() of the .day-number. How can i refer to the respective instance of .day-number inside the .after() method ?
1 Answer