Skip to content

Instantly share code, notes, and snippets.

@SANTHOSH-SJ
SANTHOSH-SJ / LICENSE.txt
Created November 19, 2019 04:05 — forked from jed/LICENSE.txt
generate random UUIDs
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 Jed Schmidt <http://jed.is>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@SANTHOSH-SJ
SANTHOSH-SJ / basic-js-greatest-hits.md
Created October 9, 2019 06:25 — forked from zcaceres/basic-js-greatest-hits.md
Articles Written to Help New JS Devs
@SANTHOSH-SJ
SANTHOSH-SJ / ajax_demo.js
Last active June 4, 2019 18:41
Ajax_basic
// documentation site
// http://api.jquery.com/jQuery.ajax/
// include cdn
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
// sample code
$.ajax({
type:"POST", // use type: or method: depending upon jquery version (type is alias for method)
url: 'your_url_to_any_page',