Hi Nicolas,
Set the time out as followed:
<td rowspan="3">
                  <div class="buttons_right" id="buttons_right" >
			<button id="hikabtn_cart_product_edit_save" type="submit" onclick="closeBoxNew(event)"  class="<?php echo $this->config->get('css_button','hikabtn'); ?> hikabtn-success hikabtn_cart_product_edit_save">
				<i class="" ></i> <?php echo JText::_('Bestellen'); ;?>
			</button>
		</div>
				</td>
			</tr>
		</table>
		<script>
          function closeBoxNew(event){
            event.preventDefault();
            console.log('invoke')
            setTimeout(function(){
             	console.log('closing')
              	window.parent.hikashop.closeBox(); 
            	window.parent.location.reload(true);
            }, 3000);
          	
          }
		</script>But unfortunatly, the box is waiting to close but now no product is added in the cart, not in chrome not in firefox and not in safari,
Where am i missing some??
Thanks.