Como validar o google recaptcha no lado do cliente?

Eu implementei o Google reCaptcha em um painel de login que aparece após três login malsucedidos

Mas eu quero validar o reCaptcha em um slide do cliente usando jQuery ao clicar no botão de login. Aqui está o código

<div style="display:none;width:310px;top:205px;left:558px;position:absolute" id="grecaptcha" runat="server">
  <cc1:GoogleReCaptcha  ID="ctrlGoogleReCaptcha1"  runat="server" PublicKey="6LdHrQ0TAAAAAD77ubv9Jr6q4RYkyddhXzX-XPB3" PrivateKey="xxxxxxx" />

  </div>
  <span id="captcha" style="margin-left:588px;color:red" />
<asp:Button ID="LoginButton" runat="server" OnClientClick="get_action();" CommandName="Login" Text="Inloggen" ValidationGroup="Login1" />

Como posso fazer isso usando o jQuery?

questionAnswers(1)

yourAnswerToTheQuestion