Skip to content

Instantly share code, notes, and snippets.

View vinodpahuja's full-sized avatar
👋
Hello World

Vinod Pahuja vinodpahuja

👋
Hello World
View GitHub Profile
@vinodpahuja
vinodpahuja / CollectFormJson.js
Created March 15, 2021 10:15
Script for collecting form data in json format
var collectFormJson = function(){
var json = {};
$('input').each(
function(index){
var input = $(this);
var type = input.attr('type');
if(type == 'hidden') { return; }