You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
586 B
29 lines
586 B
10 years ago
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div id='contador-part'>
|
||
|
{% include "spa-counter.html" ignore missing with context %}
|
||
|
</div>
|
||
|
{% endblock content %}
|
||
|
|
||
|
{% block scripts %}
|
||
|
<script>
|
||
|
$(function() {
|
||
|
$('#contador-part').on('click', '#contador', function (ev) {
|
||
|
ev.preventDefault();
|
||
|
ev.stopPropagation();
|
||
|
|
||
|
console.log('click');
|
||
|
$.ajax({
|
||
|
url: $(this).attr('href'),
|
||
|
success: function (response) {
|
||
|
console.log(response);
|
||
|
$('#contador-part').html(response);
|
||
|
$('#contador')[0].click();
|
||
|
}
|
||
|
})
|
||
|
});
|
||
|
});
|
||
|
</script>
|
||
|
{% endblock scripts %}
|