I have a dropdown say list of countries, and below that I have a div's with classes say map-uk, map-fr, map-es. Now onchange of the dropdown I want to see that which country is selected and based on that show that particular map , which is in a div that has class equal to the value of dropdown.
I am trying something like below:
$(function() {
$("select").onchange(function() {
if($(this).val() == //I need to compare the class of div that has map)
{
//show that map
//hide others
}
})
})
is there any better option to do this. I dont want to do like
$(function() {
$("select").onchange(function() {
if($(this).val() == "uk")
{
$(.map_uk).show();
$(.map_fr,.map_es).hide()
}
if($(this).val() == "fr")
{
$(.map_fr).show();
$(.map_uk,.map_es).hide()
}
blah blah blah
})
})
.change, and 2) selectors are strings. – pimvdb May 14 '12 at 16:17