+ 1
Help
Trying to remove second element from nav. What is missing from this JQuery Code: Var e=$(#nav), (); e.eq(1),(empty)
5 Answers
+ 2
It shouldn't be a comma ",". It should be period/dot ".".
var e = $(#nav).children();
e[1].remove();
This should work.
+ 2
Karla Lockridge So, it worked?
+ 2
Karla Lockridge Ok! Glad I could help đ
+ 1
thank you.
+ 1
yes it did.



