Advertisement
Guest User

Untitled

a guest
Oct 1st, 2013
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.98 KB | None | 0 0
  1. <td class="hikashop_cart_product_quantity_value">
  2.     <div class="hikashop_cart_product_quantity_refresh">
  3.         <a href="#" onclick="var qty_field = document.getElementById('hikashop_checkout_quantity_<?php echo $row->cart_product_id; ?>'); if (qty_field && qty_field.value != '<?php echo $row->cart_product_quantity; ?>'){<?php echo $input; ?> qty_field.form.submit(); } return false;" title="<?php echo JText::_('HIKA_REFRESH'); ?>">
  4.             <img src="<?php echo HIKASHOP_IMAGES . 'refresh.png'; ?>" border="0" alt="<?php echo JText::_('HIKA_REFRESH'); ?>" />
  5.         </a>
  6.     </div>
  7.     <input id="hikashop_checkout_quantity_<?php echo $row->cart_product_id; ?>" type="text" name="item[<?php echo $row->cart_product_id; ?>]" class="hikashop_product_quantity_field" value="<?php echo $row->cart_product_quantity; ?>" onchange="var qty_field = document.getElementById('hikashop_checkout_quantity_<?php echo $row->cart_product_id; ?>'); if (qty_field){<?php echo $input; ?>}" />
  8.  
  9. </td>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement