Skip to content

Instantly share code, notes, and snippets.

@overcome
Forked from helhum/UsingAjaxUrl.html
Created March 7, 2017 05:59
Show Gist options
  • Save overcome/d8c276fe9224438dd2ab31dfa208f52e to your computer and use it in GitHub Desktop.
Save overcome/d8c276fe9224438dd2ab31dfa208f52e to your computer and use it in GitHub Desktop.
Using TS rendering
{namespace t=Helhum\TyposcriptRendering\ViewHelpers}
<button class="ajax-button" data-ajaxUri="{t:uri.ajaxAction(action: 'foo', controller: 'bar') -> f:format.htmlentities()}">
Click Me
</button>
<script type="text/javascript">
jQuery.ajax(
jQuery(".ajax-button").data("ajaxUri")
).done(
function(result) {
console.log(result);
}
);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment