Full Example
-
Hi,
i’ve read the notes but I’ve found nothing about the Implementation with Jquery and this Plugin. Right now I’m able to show the content with this code:
<script type=”text/javascript” charset=”utf-8″>
function readSinglePost (url,target_div) {
var URL = url//+”&callback=?”;
console.log(URL);
jQuery.ajax({
url: URL,
dataType: ‘json’,
success: function(data) {
console.log(data);jQuery(target_div).append(data.page.content);jQuery(target_div).
console.log(data.page.content);
}
});
}
jQuery(document).ready(function() {
var url = “https://www.XXX.com/api/get_page/?id=2&apikey=XXX`”;
var target_div = “#content_test”;readSinglePost(url, target_div);
});
</script>I’m searching for a full example for a registration process. I dont know where I can add the Nonce to register a person. A full example with Formular and Jquery would be great.
Thanks
- The topic ‘Full Example’ is closed to new replies.