Page Scrolls To Top On Modal Popup
I am developing a shopping cart using bootstrap(front end) and codeigniter. when add to cart item modal popup shows the details of added item. But my issue is page scrolls moves to
Solution 1:
I feel the culprit is href="#"
What you can do 2 things,
- Just remove
href="#"
Change
<a>
to `<button type="button" id="edit_product" data-id="<?php echo $lat['product_id'];?>" name="id" data-text="Add To Cart" class="my-cart-b item_add add_to_cart">Add To Cart</button>
This should help you.
Notice that i have added type="button"
if you are following 2nd approach.
Post a Comment for "Page Scrolls To Top On Modal Popup"