Prevent page from jumping back to top when clicking the links to edit billing/shipping details
This commit is contained in:
parent
4fab179206
commit
2e99884334
|
@ -24,12 +24,12 @@ jQuery( function($){
|
||||||
window.onbeforeunload = '';
|
window.onbeforeunload = '';
|
||||||
});
|
});
|
||||||
|
|
||||||
$('a.edit_address').click(function(){
|
$('a.edit_address').click(function(event){
|
||||||
|
|
||||||
$(this).hide();
|
$(this).hide();
|
||||||
$(this).closest('.order_data').find('div.address').hide();
|
$(this).closest('.order_data').find('div.address').hide();
|
||||||
$(this).closest('.order_data').find('div.edit_address').show();
|
$(this).closest('.order_data').find('div.edit_address').show();
|
||||||
|
event.preventDefault();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Chosen selects
|
// Chosen selects
|
||||||
|
|
Loading…
Reference in New Issue