Skip to content
Advertisement

I am trying to pass letters through ajax to get the first letter of a lastName and link it to the navbar, wrong code? [closed]

I am building a contacts directory (see picture).

enter image description here

On the right there is a nav bar with the alphabet. At the moment all the contacts from the database are showing but what I am trying to do is to only show the ones where the lastName starts by the letter clicked on the nav bar and hide the rest.

So basically when I click to, for example letter B on the nav bar on the right, I want all the contacts with last names starting by the letter B to appear instead of all of the contacts, does this make sense?

I have been suggested to wrap each name into the letter they start with however I have a very large database and I am not really sure how to apply that on php. This is what I have come up with so far.

I have tried this now but not sure where I am going wrong. I think it is in the php when I am trying to implement the sql “like” operator in javascript as I’m probably not using the right method but please if someone could tell me where am I going wrong would be great!

I know I need to use something similar to this but not sure how to apply it:

JavaScript

Or something like:

JavaScript

See my code here:

JavaScript

HTML:

JavaScript

Advertisement

Answer

You can use .each loop to iterate through your loadProfile div and then get value of fullName span then split that text using split(",")[0] here 0 will give you value before commas(lastname) . Then use that to see if the first letter matches with a tag text then show that divs else hide .

Demo Code :

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