Skip to content

Instantly share code, notes, and snippets.

View baladkb's full-sized avatar
🎯
Happy Octocat

BK baladkb

🎯
Happy Octocat
  • Chennai ✈️ India
View GitHub Profile
@baladkb
baladkb / SDP fault nature function
Created August 29, 2019 19:26
SDP fault nature function
function applyFaultLookup(){
//var categoryVal=$CS.getText("CATEGORY");
jQuery.ajax({
url: 'http://cag.dev.spritle.com:8084/api/IFMSInterface/GetNatureOfFault?category=Building',
type: 'get',
dataType: 'json',
success: function (result) {
let daftar = result;
var html = '';
jQuery.each(daftar, function (i, data) {
Oor Sutri Puranam
https://colorlib.com/preview/theme/opium/
@baladkb
baladkb / tetn web reference
Last active February 21, 2019 10:09
tetn web reference
http://www.michaelvillar.com/
https://github.com/michaelvillar/photoslog
https://threejs.org/
https://tonejs.github.io/demos
http://dynamicsjs.com/
@baladkb
baladkb / goodGitRepos.txt
Last active February 12, 2019 13:33
Good Git Repos !!!
https://github.com/codingforentrepreneurs
https://github.com/keras-team/keras
https://github.com/llSourcell
https://github.com/ardamavi
https://github.com/deeplearningturkiye
@baladkb
baladkb / replace uncode to special char in Javascript
Created September 20, 2018 11:14
replace uncode to special char in Javascript
entityMap : {
'&': '&',
'<': '&lt;',
'>': '&gt;',
//'"': '&quot;',
//"'": '&#39;',
//'/': '&#x2F;',
//'`': '&#x60;',
'=': '&#x3D;'
},
$('.dropdown-col-filter').click(function(e) {
e.stopPropagation();
});
$(document).click(function() {
$(this).find('.dropdown-content-col-filter').removeClass("show");
});
@baladkb
baladkb / Place to visit !!!
Last active April 5, 2019 11:58
Place to visit !!!
*Amazing view of mountain lakes in Albanian Alps
*Zarautz, Spain
*Nepal jungle
*Fjaðrárgljúfur, Iceland
*Geirangerfjord, Norway
*Kluane National Park and Reserve of Canada, Canada
@baladkb
baladkb / How to apply onclick function for dynamic class's and id's ?
Created September 3, 2018 11:28
How to apply onclick function for dynamic class's and id's ?
<input type="checkbox" class="ck_filter">
$(document).ready(function() {
$(document).on( 'click', '.ck_filter', function () { ... });
});