I have the following code, which produces a dropdown menu / selector. When one choice is selected, the main display changes to that choice. Although, I'm unable to edit the actual code, I'm able to use this JQuery to edit the text.
<fieldset class='topic'>
<div class='style_picker validatable translate'>
<label class='topic_style' for='style'>
Select a topic type:
</label>
<div class='validatable' id='style_picker'>
<div class='selector'>
<span class='selection'></span>
<span class='handle'></span>
</div>
<ul type='none'>
<li class='ice'>
<span class='style_item'></span>
<span class='copy'>
ice
</span>
</li>
<li class='earth'>
<span class='style_item'></span>
<span class='copy'>
earth
</span>
</li>
<li class='wind'>
<span class='style_item'></span>
<span class='copy'>
wind
</span>
</li>
<li class='fire'>
<span class='style_item'></span>
<span class='copy'>
fire
</span>
</li>
<li class='water'>
<span class='style_item'></span>
<span class='copy'>
water
</span>
</li>
</ul>
</div>
I've been able to edit the individual choices, but for each edited piece, if selected, the main display still shows the original text, rather than the modified text. For example:
(function ($) {
$(document).ready(function () {
$('.topic .style_picker li.fire span.copy').text("time");
});
})(jQuery);
I'm trying to change "fire" to "time". If I use the above code, the selection changes, but the main display stays as "fire". Can anyone offer insight on how to fix this or what I should do? I'm thinking the line responsible is
<span class='selection'></span>
but I'm not sure. Thanks!