Answers for "select option data attribute"

1

select onchange jquery get the selected option data attribute

$('#country').on('change', function(){
    let id = $(this).find(':selected').data('id');
    console.log(id);
  });
Posted by: Guest on July-23-2020
2

jquery get data attribute of selected option

$(this).find(':selected').data('id')
Posted by: Guest on July-22-2020
0

css data attribute selector

[data-value] {
  /* Attribute exists */
}

[data-value="foo"] {
  /* Attribute has this exact value */
}

[data-value*="foo"] {
  /* Attribute value contains this value somewhere in it */
}

[data-value~="foo"] {
  /* Attribute has this value in a space-separated list somewhere */
}

[data-value^="foo"] {
  /* Attribute value starts with this */
}

[data-value|="foo"] {
  /* Attribute value starts with this in a dash-separated list */
}

[data-value$="foo"] {
  /* Attribute value ends with this */
}
Posted by: Guest on October-22-2020
0

javascript get data attribute of selected option

function check_status(obj) {
  var uid = obj.options[obj.selectedIndex].getAttribute('data');
  alert(uid);
}
Posted by: Guest on September-09-2020
1

select by data attribute

$('*[data-id="your_id"]');
Posted by: Guest on September-10-2020

Code answers related to "select option data attribute"

Code answers related to "Javascript"

Browse Popular Code Answers by Language