Quote:
Originally Posted by delicjous
Perhaps something like this:
$('.js-content-entry-prefixes .selectBox-label').text('Unsolved');
Did not test it!
|
This works:
Code:
$('.selectBox-label').first().html('Unsolved');
Danke dir delicious!
Final Code:
Code:
if($("div[data-current-channelid*='23']").length == '1'){$('.js-content-entry-prefixes option[value="Unsolved"]').prop('selected', true);$('.selectBox-label').first().html('Unsolved');}