Domanda

I am having a button and when updated that value using jQuery JAWS is not able to read the updated value. It still reads the old value.

<input id="save" type="button"  value= "Save" onClick="saveValues()" />

$("#save").attr('value', 'Update');

Value is getting changed to "Update" but JAWS still reads as "Save". How to resolve this issue?

È stato utile?

Soluzione

It works when i added the "title" attribute and updated the same using jquery

$('#save').attr('title', 'Update');
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top