Plugin Author
Gabor
(@nextendweb_gabor)
Hi @maddoctor!
If you inspect our Accordion Menu (https://smartslider3.helpscoutdocs.com/article/318-chrome#code), then you can find classes, like this one:
.nextend-nav-435
as you see here:
https://www.dropbox.com/s/i3tbb7az0ekq7ay/class.PNG?dl=0
This class is used for the parent menuitem and for its submenuitems. The parent is a dt element, so you can use that to get a unique identifier. All together, this would point to the link of only one menuitem:
jQuery("dt.nextend-nav-435 a")
Thank you for the quick replay it works flawlessly!