Question !! So i created a category in a Tab in a ...
# beginners
f
Question !! So i created a category in a Tab in a Center, now i wanted to add a Link to that category, which is an AJAX function, which opens a feedback form on thee screen without refreshing. Now i tried to add a link something like this:
Copy code
(function(e) {
    e.ajax( {
        url: "<https://www.abcd.com>", type: "get", cache: !0, dataType: "script"
    }
    )
}

)(jQuery);
I minified it and added it, but it is not working. What should i do to create an AJAX link?