Tagged Questions
1
vote
5answers
817 views
How to simplify my country select menu PHP/mysql
I have a select menu that displays countries. It looks at the DB and judging by the value in the db shows the option as selected. Is there a simpler way off doing this than:
if ($country == 'AG') ...
0
votes
6answers
187 views
Simplify jQuery Selector
I have a selector, "td > a.leftmenuitem:last, div > a.leftmenuitem:last", and I'd like to simplify it a little. I've tried "* > a.leftmenuitem:last", "td, div > a.leftmenuitem:last", and ...