Blog.init();


A technical blog on Computer Science and Software Development topics by Tomás Pérez.


Tag: AJAX


  1. Cross-domain Request object and CORS

    There are several scenarios where we would need to perform a request against a different subdomain. Originally that was not possible by default(although there are some workarounds) due to the same domain restrictions. Cross-Origin Resource Sharing (CORS) extends the original same domain restrictions in several ways. One of them…

    CORS, AJAX, browsers, javascript