Skip to content

Instantly share code, notes, and snippets.

@foxmask
Created June 1, 2012 12:43
Show Gist options
  • Save foxmask/2851881 to your computer and use it in GitHub Desktop.
Save foxmask/2851881 to your computer and use it in GitHub Desktop.
twitter dropdown : recuperer un code pays dans la liste
$('ul.dropdown-menu').click(function (e) {
var countryVal = $('ul.dropdown-menu li a').text() ;
//ici j'ai toute la liste qui est retournée et pas la valeur selectionnée
alert(countryVal);
$.ajax({
type: "POST",
url: '/getcountry',
data: { country: countryVal },
success: function(data) {
$('#tabledata').html(data);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment