Video Review MTurk None of the Above Selector

Automatically clicks "None of the above" for each video

// ==UserScript==
// @name         Video Review MTurk None of the Above Selector
// @version      0.2
// @description  Automatically clicks "None of the above" for each video
// @author       You
// @match        https://www.mturkcontent.com/dynamic/hit*
// @require      http://code.jquery.com/jquery-git.js
// @grant        none
// @namespace https://greasyfork.org/users/710
// ==/UserScript==

$("td[id$='answer_0']").each(function(){
    										var id = $(this).attr("id");
    										var question = id.split("_")[1];                                                
                                            btnClick(question, 'answer', 0); 
										}
                                );