How to get a static json file across a domain

How to get a static json file across a domain

Hi,
I am trying to get a static .json file using jsonp across domains. The sample I found, substituting my own url, follows. This does not seem to work as no alert with the data is shown even though a alert stating the function has been hit displays just previous to this code. I would appreciate any help.:

  1.                 $.getJSON("http://acaddb.hvcc.edu/~a-name/data/json/markers.json?callback=?", function (result) {
                        //response data are now in the result variable
                        alert(result);
                    });