DEV Community

Discussion on: Building a Simple URL Shortener With Just HTML and Javascript

Collapse
 
jonasroessum profile image
Jonas Røssum

Really? You pull jQuery in for an ajax request?

I would recommend to just use fetch instead, as it is build into most browsers. If you are concerned about browser compatibility, use a polyfill.

Collapse
 
bauripalash profile image
Palash Bauri 👻

Ah, I'll look into it soon to make it better.
Thank You