- https://frontendmasters.com/
- https://www.class-central.com
- http://www.udacity.com
- http://www.freecodeamp.com
- https://codecademy.com
- https://mva.microsoft.com/
- https://github.com/open-source-society/computer-science
- https://www.khanacademy.org
- https://www.safaribooksonline.com/ ( One Month Free Trial )
- http://edx.org
- http://coursera.org
- http://udemy.com
- https://www.skillshare.com/
- https://thenewboston.com/videos.php
- https://angularfirebase.com/
- http://w3schools.com
- https://www.airpair.com/
- https://egghead.io
- http://tutsplus.com
- https://www.pluralsight.com/browse/software-development ( 10 Days Free Trial )
- https://hackr.io
- https://academy.fossbytes.com/
- https://www.codeschool.com
- http://www.learnvern.com/
- http://www.lynda.com (10 Days Free Trial)
- https://www.datacamp.com
- https://alison.com/
- http://programming-motherfucker.com/become.html
- https://itpro.tv/PAID
- https://www.cbtnuggets.com
- https://linuxacademy.comAWS (Amazon Web Services)
- https://www.youtube.com/watch?v=BDBvHOaaKHo&list=PLv2a_5pNAko0Mijc6mnv04xeOut443Wnk
- https://linuxacademy.com/ (AWS and other cloud solutions )
- https://coursehunters.net/
- https://scrimba.com/
Category: Ajax
How to setup Google reCaptcha Version 2.0?
To setup Google reCaptcha oepn url https://www.google.com/recaptcha/admin and fill form as shown in the screenshot below:
After registration open newly created reCaptcha site and read the guide provided by google as shown below:
Now paste <script src=’https://www.google.com/recaptcha/api.js’></script> in <head> or anywhere before use of captcha.
And then paste <div class=”g-recaptcha” data-sitekey=”6LcPQggTAAAAAAw-SQm8KTEW-N1CBuzBz_gW71UT”></div> to the place where you want to show captcha in form and obviously you will have to use tag with your own site key from google reCaptcha site.
WordPress: How to submit custom form data using Ajax?
In wordpress we send data using same ajax method as we do in regular non-wordpress website. The difference is few additional data variables and filter on serverside.
To Implement this I created a template page named “Request a Quote” in request-a-quote.php, created new wordpress and assigned that template to this page.
Continue reading WordPress: How to submit custom form data using Ajax?