User-944424728 posted
Hello, Screen reader currently says "button Next right arrow right arrow" (Next >>) so how can I hide the ">>"
this is asp button
<asp:Button ID="btnNext2" runat="server" class="formbutt" CausesValidation="false" Text="<%$ Resources: Resource, _Next %>" OnClick="btnNextClick" aria-label="<%$ Resources:Resource,lbtnNext %>"/>
--this is resource file
_Next = Next >>
-- I tried
Next <span aria-hidden="true"> >> </span> but it won't work because text is in property of an input
I added aria-hidden=" />>" in asp: button, screenreader read "blank" on the next >> button.
--browser html code
<input type="submit" name="ctl00$Main_content$btnNext2" value="Next >>" id="ctl00_Main_content_btnNext2" class="formbutt"
aria-label="Next">
--
is there a jquery or javascript that I can find value="Next >>" and add attribute aria-hidden like example below Please advise. Thanks.
$(document).ready(function () {
$('#ctl00$Main_content$btnNext').attr("aria-hidden", "true");