Forum Discussion
ArchiveUser
8 years agoQrew Captain
With IOL, this code should do the trick.
$(".saveBtn, [id$=MenuOption]").each(function() {
let text = $(this).text().replace('Save', 'Submit');
$(this).text(text);
});
$(".saveBtn, [id$=MenuOption]").each(function() {
let text = $(this).text().replace('Save', 'Submit');
$(this).text(text);
});
ArchiveUser
8 years agoQrew Captain
With the help of Chrome's native Dev tool (hit f12 and start exploring).