Skip to content

Instantly share code, notes, and snippets.

@zazanik
zazanik / gist:8befd206fda5a049276d9c306e75247c
Created October 23, 2017 14:18
Remove scroll from iphone
$('body').on('touchmove', function(e){
if($('.scroll-disable').has($(e.target)).length) e.preventDefault();
});
/******************************************************
* Get Letter by number
******************************************************
* @param number {number}
* @returns {string}
******************************************************/
function getLetterByNumber(number) {
return (number >= 26 ? idOf((number / 26 >> 0) - 1) : '') + 'abcdefghijklmnopqrstuvwxyz'[number % 26 >> 0];
}
/************************************************************************
* UNSERIALIZE
************************************************************************
* This function unserialize php database array
************************************************************************
* @param data
* @returns []
************************************************************************/
popupSplitTest.prototype.unserialize = function (data) {
<div class="container test">
<img src="http://placehold.it/100x100" class="flex-item" alt="" />
<img src="http://placehold.it/100x100" class="flex-item" alt="" />
<img src="http://placehold.it/100x100" class="flex-item" alt="" />
</div>
$(window).load(function(){
/ Stuff to do after the page is loaded /
$conteinerWidth = $(".test").width();