Puts the "Marked for Later" button on the home page of AO3.
< Feedback on Put Marked for Later Button on AO3 Home
To match the style of the other navigation items I replaced <li> with <li class="dropdown">.
<li>
<li class="dropdown">
To put it before the search tab for mobile you can replace .append with .find('li.search').before
.append
.find('li.search').before
You can also delete lines 27, 28 and 30 as they are not doing anything and causing a warning.
Sign in to post a reply.
To match the style of the other navigation items I replaced
<li>
with<li class="dropdown">
.To put it before the search tab for mobile you can replace
.append
with.find('li.search').before
You can also delete lines 27, 28 and 30 as they are not doing anything and causing a warning.