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);
});
MichaelCurtis
8 years agoQrew Cadet
Very nice so I have this code
var cell = $(".cell")
console.log(cell[3].innerText)
and it works when the file is saved but in edit or new, it doesn't et the value.
I made a button that sends a POST to google calendar. but I want the button to send a post and save the document.
var cell = $(".cell")
console.log(cell[3].innerText)
and it works when the file is saved but in edit or new, it doesn't et the value.
I made a button that sends a POST to google calendar. but I want the button to send a post and save the document.