document.onmousedown=new Function("return true");document.onmouseup=new Function("return true");document.oncontextmenu=new Function("return true")
window.document.onselectstart=function(){return true}
document.body.onselectstart=function(){return true}
$(document).on('click', '.add_photo_to_location', function(){
$('#upload-modal').modal();
});
var object_id = $(this).attr('id'),
ajax_url = '<?php echo admin_url('admin-ajax.php'); ?>';
$.ajax({
url: ajax_url,
type: 'POST',
data: {
action : '',
am2_payload: am2_payload
},
success: function (response) {
}
});
jQuery(document).ready(function($){
$('img.am2_list_img').one('load', function() {
// Get on screen image
var screenImage = $(this);
// Create new offscreen image to test
var theImage = new Image();
theImage.src = screenImage.attr("src");
// Get accurate measurements from that.
var imageWidth = theImage.width;
var imageHeight = theImage.height;
/*console.log(theImage);
console.log(imageWidth);
console.log(imageHeight);
console.log("-----");*/
// e sad ide if...
if(imageHeight < imageWidth ){
//console.log("height je manji od width - LANDSCAPE");
screenImage.addClass("landscape");
} else if(imageHeight === imageWidth) {
//console.log("height je jednak width - SQUARE");
} else {
//console.log("height je VEĆI od width - PORTRAIT");
screenImage.addClass("portrait");
}
}).each(function() {
if(this.complete) $(this).load();
});
});
Kako pouzdano iz PHP-a setapirati JS date
$tz = new DateTimeZone($this_city_tz);
$date = new DateTime();
$date->setTimeZone($tz);
$date_time = $date->format('Y-m-d H:i:s');
$date_time_js = $date->format('Y/m/d H:i:s');
var currentDate = new Date('<?php echo gmdate("r", strtotime($date_time_js)); ?>');
console.log(currentDate);
function is(type, obj) {
var clas = Object.prototype.toString.call(obj).slice(8, -1);
return obj !== undefined && obj !== null && clas === type;
}
is('String', 'test'); // true
is('String', new String('test')); // true
is('Date', new Date()); // true
Source
Nakaci se na ‘submit’ event, napravi nesto sa vrijednostima i dodaj novi input koji ce se submitati
$(document).on('submit', 'form', function (e) {
e.preventDefault();
var form = $(this),
elements_to_submit = $('[name]', this),
signed_values = nv.crypto.sign({
exclude_elements: ['__RequestVerificationToken'],
hash_fn: nv.crypto.hash.simpleHash,
elements_to_sign: elements_to_submit
});
form.append('<input type="hidden" name="signedValues" value="' + signed_values + '">');
this.submit();
});
jQuery
$.inArray(value, array)
Underscore
_.contains(list, value)
More info
<script type="text/javascript" src="/static/js/stacktrace.js">
</script>
<script type="text/javascript">
window.onerror = function () {
var stackTrace, argData, docData, request;
var _doc = {};
_doc.URL = document.URL;
docData = encodeURIComponent(
JSON.stringify(_doc));
argData = encodeURIComponent(
JSON.stringify(arguments));
stackTrace = JSON.stringify(printStackTrace());
console.log(arguments);
request = new XMLHttpRequest();
request.open(
'POST',
"https://www.yoursite.com/error-logging-url"
);
request.setRequestHeader(
"Content-type",
"application/x-www-form-urlencoded"
);
request.onload = function (e) {};
request.send(
"docData=" + docData + "&" + "argData="
+ argData + "&" + "stackTrace=" + stackTrace);
return false;
}
</script>
jQuery(document).ready(function($){
// now you can use jQuery code here with normal $ shortcut formatting
});
Posts navigation
dz42 Wiki & Knowledge Base