Skip to content
Advertisement

dynamically display posts of a user-chosen category without reloading page

I have a blog posts page that looks similar to this: https://magnolia.com/blog/

What I want to do is when the user clicks on a category, only posts of that type display below the search. The above page accomplishes that by updating the whole page, but I want the posts to change their display to none so the page doesn’t have to get reloaded every time and so the featured post stays on the page. I have a list of links that display the tags for the posts, with their IDs being the possible post tag IDs.

JavaScript

The posts are displayed using this code ($class_list being a list of all the tag IDs associated with that post)

JavaScript

So, what I want is when a user clicks on “Joy”, all of the posts with the class “467” are displayed, but all of the posts that do not have that class are hidden with display: none. And if “All” is clicked, all posts are displayed. I know I have to use a hook in my .js file, but I am not very familiar with it and could use any help I can get. Thank you!

Advertisement

Answer

The easy way would be to use a javascript framework and leverage a for-each of some sort. Barring that, here’s a native js way:

First off, you can’t have an html id attribute start with a number. Let’s assume you’ve prefixed all your ids with “tag_”.

Javascript (uses ES6 – make note if you’re supporting old browsers)

JavaScript

This is a way, anyway (hopefully). I’m assuming a CMS isn’t always flexible so we’re working with what you’ve provided.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement