I have a problem.
when i click on my link in the static version:
<a class="ajax-portfolio" href="page.html"><span class="moreText">+</span></a>
the page and the javascript function works perfectly.
BUT, when i make a dynamic content:
<script>
$(function() {
var url = "json1.json";
$.getJSON(url, function(json) {
$.each(json.sommer, function(i, item) {
$('<a class="ajax-portfolio" href="' + item.name + '"><span class="moreText">+</span></a>').appendTo('#betriebe');
});
});
});
</script>
the effect doesn't work correctly.
doesn't work correctly, because i got a new window. in the static version the page of the link open in a part of my page.
the problem must be, that the class doesn't work in the dynamic version. Has someone a solution? Please. Thanks in advance!!
You most likely have some other code that does
or
You need to change this to
The problem is that with
$('.ajax-portfolio').click
you bind a handler to existing elements in the DOM (at the time the script runs). When you later add a new element with the same class your code has not been attached to it.Using
$('#betriebe').on('click', '.ajax-portfolio'
allows you to delegate the event handling to a pre-existing ancestor of all.ajax-portfolio
elements (since they are located inside it).