function ddlSelectedValue(obj,value) {
$(obj).each(function () {
$('option', this).each(function () {
if ($(this).val() == value) {
$(this).attr('selected', 'selected')
};
});
});
No comments:
Post a Comment