- Joined
- Jan 10, 2016
- Messages
- 46,637
- Reaction score
- 123,874
- Points
- 1,414
- Age
- 124
- Gender
- Female
Oh, I meant to say yesterday that for some reason it works fine on my desktop (firefox) but does not work on my phone. (I think my phone is Chrome?) idk if that helps.If you're having issues with the arrow taking you to the previous post on reply messages, please install this in tampermonkey. It's a temp fix, seems to be a chrome issue with one of their recent updates.
Code:// ==UserScript== // @name MTC Previous Post Patch // @namespace https://github.com/Kadauchi // @version 1.0.0 // @description Does things... // @author Kadauchi // @icon // @include http://www.mturkcrowd.com* // @require http://code.jquery.com/jquery-3.2.1.min.js // ==/UserScript== $(`#messageList`).on(`click`, `a[href^="goto/post"]`, e => $(`html, body`).animate({scrollTop: $(e.target.hash).offset().top}, 250));