I am trying to click a div with Javascript. I can use Jquery. After I select the element using QuerySelector or XPath and use .click() on the element, it doesn't actually end up clicking the div and does nothing.
document.querySelector('.GriddyLayout > div:nth-child(1)').click()
The website I am trying it on is here. Running the code above in the Javascript console is not selecting the option for some reason. Does anyone know how to click this button (div) with JS so that it actually clicks? Will upvote all answers, and accept the one that works best/first.

jqueryway?$('.GriddyLayout > div:nth-child(1)').click();<div class="SelectableTile TEXT MULTIPLE_CHOICE natural" role="radio" aria-checked="false" style="width: 90px; height: 50px;" id="yui_3_14_0_1_1512889344567_1009"><div class="TileSkinBare CENTER MIDDLE"><div class="GeneticallyModified"><div id="yui_3_14_0_1_1512889344567_868">28</div></div></div></div>document.querySelector('.GriddyLayout > div')? Your selector seems redundant.