I am trying to fetch few data from database in my .js file of wordpress theme. I tried with .post() of jquery but nothing is happening.
Please also suggest me any al
You can use the jQuery AJAX get shorthand:
jQuery AJAX get
$.get( "../abc.php", function( data ) { alert( "Data Loaded: " + data ); });
Good to know: Since you're getting data from a file, you should use a GET.
GET