While Grails has several tags to generate either resource links or anchor tags, what about a plain href? Say I'm coding some AJAX functions on my own and I want to say something like
$.post("<g:href controller='mycontroller' action='update' />');
I think createLink is what you're looking for:
<a href="${createLink(controller:'mycontroller', action:'update')}" />