I need some assistance to click the Yes button on a web page


Website:http://www.sheknows.com/parenting/gi...giveaway/enter

I can click the Submit button fine but on the second page I have not been able to click the Yes button

HTML Code: 
Here is the VBA code I have tried so far:

Set inputCollection = ie.document.getElementsByTagName("a")

For Each aelement In inputCollection
If aelement.getAttribute("class") = "button button-yes" Then
aelement.Click

Set ElementCol = ie.document.getElementsByTagName("a")


        For Each ele In ie.document.getElementsByTagName("a")
            If InStr(ele.innerhtml, "terms") > 0 Then
            ele.Click

Set ElementCol = ie.document.getElementsByTagName("a")


        For Each ele In ie.document.getElementsByTagName("a")
            If InStr(ele.innertext, "Yes") > 0 Then
            ele.Click
None of these have worked. I am pretty new to VBA and so may be missing something obvious.

Anyone have any other ideas?