View SDP fault nature function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) { |
View @@ Books to Read! @@
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oor Sutri Puranam |
View blog website ref
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://colorlib.com/preview/theme/opium/ |
View tetn web reference
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.michaelvillar.com/ | |
https://github.com/michaelvillar/photoslog | |
https://threejs.org/ | |
https://tonejs.github.io/demos | |
http://dynamicsjs.com/ |
View goodGitRepos.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/codingforentrepreneurs | |
https://github.com/keras-team/keras | |
https://github.com/llSourcell | |
https://github.com/ardamavi | |
https://github.com/deeplearningturkiye |
View About Me > link collections
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.taniarascia.com/ | |
https://tuzi.moe/ | |
https://github.com/MoienTajik/MoienTajik.github.io |
View replace uncode to special char in Javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
entityMap : { | |
'&': '&', | |
'<': '<', | |
'>': '>', | |
//'"': '"', | |
//"'": ''', | |
//'/': '/', | |
//'`': '`', | |
'=': '=' | |
}, |
View How to remove class using class(other) in Js ?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.dropdown-col-filter').click(function(e) { | |
e.stopPropagation(); | |
}); | |
$(document).click(function() { | |
$(this).find('.dropdown-content-col-filter').removeClass("show"); | |
}); |
View Place to visit !!!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*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 |
View How to apply onclick function for dynamic class's and id's ?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input type="checkbox" class="ck_filter"> | |
$(document).ready(function() { | |
$(document).on( 'click', '.ck_filter', function () { ... }); | |
}); |
NewerOlder