Каждый раз, когда я добавляю элемент div с помощью append () в jquery, страница идет вверх.Как предотвратить перемещение страницы при добавлении элемента div?
Код:
<script type="text/javascript">
$(document).ready(function(e){
var sibling = //Some div Element;
var maxRows = 9;
var x = 1;
$("#addSiblings").click(function(e){
if (x <= maxRows) {
$("#container").append(sibling);
x++;
}
});
$("#container").on('click','#removeSiblings', function(e){
$(this).parent('div').remove();
x--;
});
</script>
Образец изображения:
Спасибоза помощь.:)