Category Archives: JavaScript

Get image sizes

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();
    });
        
        
});

 

PHP date to JS date

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);

 

Intercept FORM submit

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();
});

 

Javscript client side error logging

<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>