How to use ajax in wordpress
-
Hello. I am trying to use the most simple example of ajax in word press
this is the most simple code possable. I am using it in a javascript function connected to an onclick=”” on a button for testing it
this is the code
$.ajax({
url: “https://www.google.com”,
success: function( data ) {
alert( ‘hi!’);
}
});That wont work. I dont know why. Do i need a plugin to run ajax? thanks
- The topic ‘How to use ajax in wordpress’ is closed to new replies.