I recently discovered some files with the extension .cst on my localhost server. I'm wondering if AJAX is capable of loading them. So, here's my question: Can AJAX load files with custom extensions? If yes, how can I achieve this? If not, is there an alternative method that would allow us to display the file content on page load?
This is the AJAX call I currently have for loading the file load.cst:
$.get("load.cst", function(data) {
console.log(data)
});