Skip to content

Instantly share code, notes, and snippets.

@elricco
Last active March 30, 2017 07:35
Show Gist options
  • Save elricco/945f916d19c4a63a9e04fdbd7abc9de2 to your computer and use it in GitHub Desktop.
Save elricco/945f916d19c4a63a9e04fdbd7abc9de2 to your computer and use it in GitHub Desktop.
AJAX Call in REDAXO 5
$.post(
location.href,
if (!rex::isBackend()) {
if (!empty($_POST)) {
exit;
}
// Ajax check
if (rex_request::isXmlHttpRequest()) {
print $this->getArticle(1);
} else { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment