I have this attribute element and I want to extract the value from it.
I’m not sure how will I do it?
I want to extract value from
<select name="Hello/1.0/TestWorld" size="1" disabled="disabled" data-original-title="" title="">
<option value=""></option>
<option value="Hello">Hello</option>
</select>
<script>
$(document).ready(function(){
const hello = $('qualifier="Hello/1.0/TestWorld"')
console.log('HELLO', hello)
});
</script>
2
Answers
You can access it like this (referred to your original request):