I volunteer with an animal rescue group and our web site strictly an HTML site with jQuery.
I'm looking for suggestions on how to make this a bit more dynamic so I don't have to figure out when the next adopt-a-pet event will be. They are always on the 2nd and 4th Saturday of each month. With that information, I would expect I could implore a little JavaScript/jQuery magic and produce HTML code, dynamically.
<article class="event-holder">
<h4><a class="more-heading" href="aap.html">Adopt A Pet</a></h4>
<p>Meet our cats available for adoption on June 26th... <a class="read-more" href="aap.html">MORE</a></p>
</article>
Given the code sample above, the date of June 26th would be a dynamic variable. Only thing is I'm not sure where to start.
If I can get some help with this, I'd really appreciate it.