Agile Development Practices suggest developers keep a solutions log. I think we can all benefit from a combined solutions log. As I encounter errors or problems I intend to record the solutions on this blog. Please feel to leave your comments, solutions and email me with your errors and solutions.
Jul 14, 2013
Jul 8, 2013
Solved: Outlook keeps asking for credentials
Open the windows credential manager and delete the credentials for the user that is experiencing the issue.
Apr 4, 2013
Current most used JS pattern
var myObject = (function () {
// private variables
var ajaxUrl = '/path/to/ajax.html',
selectorObj,
// public variables
obj = {};
obj.publicVar = '';
// private methods
setupEventHandlers = function () {
};
// public methods
obj.init = function () {
setupEventHandlers();
};
return obj;
}());
$(function () {
myObject.init();
});
Javascript AJAX Wrapper
AJAX Wrapper
var AJAXWrapper = {
getData: function (ajaxObject) {
var dfr = $.Deferred();
ajaxObject.success = dfr.resolve;
$.ajax(ajaxObject).error(function () {
alert('Error with AJAX request');
});
return dfr.promise();
}
};
Usage
var ajaxObject = {
url: "/path/to/data.html",
data: { email: "my@email.com" },
dataType: 'html'
};
AJAXWrapper.getData(ajaxObject).then(function (data) {
console.log(data);
});
Subscribe to:
Posts (Atom)