Due to some reason, I don't want to use jQuery in this JavaScript code:
$(function() {
  var url = ; //webhook URL here
  var content = "Hiii";
  var username = "Hi";
  $.post(url, {"content": content, "username": username});
  });
Is there any way to convert this into a code that doesn't require jQuery?
 
     
    