Skip to content
View colecmc's full-sized avatar
Block or Report

Block or report colecmc

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. formost formost Public

    JavaScript

  2. noticejs noticejs Public

    Easy to use vanilla js, micro-library to show a notice on screen

    JavaScript

  3. How to make Google reCAPTCHA a requi... How to make Google reCAPTCHA a required field? - What you have to do is prevent the form submission until you can validate the user response by using the Google reCaptcha verify callback, then, if it passes, allow the form to submit. Check the documentation: https://developers.google.com/recaptcha/docs/display#example
    1
    var RC2KEY = 'sitekey',
    2
        doSubmit = false;
    3
    
                  
    4
    function reCaptchaVerify(response) {
    5
        if (response === document.querySelector('.g-recaptcha-response').value) {