I'm trying to make a simple jquery ajax call to a WEB API method.
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> 
<script type="text/javascript">
    $(document).ready(function () {
        $.ajax({
            type: 'POST',
            url: 'http://redrock.com:6606/api/values/get',
            dataType: "jsonp",
            crossDomain: true,
            success: function (msg) {
                alert("success");
            },
            error: function (request, status, error) {
                alert(error);
            }
        });
    });
</script>
WEB API action:
 public IEnumerable<string> Get()
  {
     return new string[] { "value1", "value2" };
  }
ajax call does not hitting the WEB API. I get the below error in browser console.
GET http://redrock.com:6606/api/values/get?callback=jQuery18207315279033500701_1383300951840&_=1383300951850 400 (Bad Request)
 
     
    