$(document).ajaxError(function(){
    if (window.console && window.console.error) {
        console.error(arguments);
    }
});

$(document).ready(function() {
    var styleId = document.getElementById("styleId");
    if (styleId != null)
    {
        getNecklines(styleId.value);
        getSleeves(styleId.value);
    }
}); //close ready()