I have ul with the number li inside. Does everyone have id "# category", but different classes (for example, ".tools", ".milk", ".apple").
Using jQuery. I:
$("li#category").click(function(){ some_other_thing ( .... )});
now I need to put the class li "name" - (indeed, a string) inside some_other_thing () function instead of ....
How can I do that?
javascript jquery
There Are Four Lights
source share