Easier Way
|
|
I only read one LiveJournal and it's an 18+ (for talesofmu) so naturally your script didn't work for me as it only clicks 14+. After taking a peek at the DOM I realised there is an easier, more generic solution. Since the input button on the page is the only one named "adult_check" you can just use .getElementsByName to grab and click it. That way it should work for all age verify buttons unless the 14+ button has a different name... document.getElementsByName("adult_check")[0].click() |
![]() ![]() |
Thanks! I'll adjust accordingly. |

