Speeding it up
|
|
Should take the function out. The button will always be there... just do this... var b = document.evaluate("//input[@type='submit' and @name='action_confirm' and @value='Confirm Birth Date']", document, null, 9, null).singleNodeValue;
if(b) {
b.click();
}
|