by suleski | May 14, 2015 | Reference, Technical, Troubleshooting
Generally, AngularJS does make it straightforward to analyze query parameters. However, getting there is not so obvious. Here are some hurdles that I recently overcame when researching and implementing. You must put your module in ‘HTML5 mode’. Code can...
by suleski | Mar 28, 2015 | Reference, Technical, Troubleshooting
I have an application written in AngularJS. It works on my Windows desktop just fine. It also works on my Android. However, it would only display the raw HTML (instead of the updated Angular HTML) on Windows Phone. Turns out that Windows Phone does not like...
by suleski | Dec 20, 2014 | Reference, Technical
When calling AJAX from Javascript, callbacks of ‘success’ and ‘error’ are typically supported. Your call might look something like this (I happen to be using Angular here): $http( request ).success( function( response ) { console.log(...
by suleski | Nov 22, 2014 | Reference, Technical
Overview I’ve been moving into using AJAX as a way to create applications directly in websites. While researching, I’ve come across a number of methods that help me retrieve data from and set data on the server for the client. This article strictly covers retrieval...