Using jQuery Mobile I would like to disable the ajax call on links within a specific part of the DOM.
I do not want to put a
data-ajax = false
every time I don't want to use the jquerymobile ajax.
For example, any link that is a child of 'content':
<div class="content">
<a href="http://externalwebsite.com">External Link</a>
</div>
I would like to add the 'data-ajax = false' onto every link that is a child of 'content'
Is there a way to do this with jquery?