Try $.get() for query string queries:
$.get('complexitybar.ashx?a=init&vc=...')
POST requests expect URL and key-value pairs to be split:
$.post('complexitybar.ashx', 'a=init&vc=...')
With POST requests, key-value pairs are sent as content data, and not as part of a URI.
source share