so, i've made the button to disapear when clicked, but the clickable area still's there...
does anybody have idea of how can i make that area to stop be clickable??
thanks
Posted 12 August 2011, 18:47
Posted 12 August 2011, 20:24
.hide_msg{
display: none;
}
<div id="order_submitted" class="hide_msg">
<p>This image will spin until the page refreshes</p>
<p class="align_center"><?php echo tep_image('ext/jquery/bxGallery/spinner.gif'); ?></p>
</div>
<div id="confirm">
<?php echo tep_draw_button(IMAGE_BUTTON_CONFIRM_ORDER, 'check', null, 'primary'); ?>
</div>
<script type="text/javascript">
$(document).ready(function(){
$('#confirm').click(function(){
$('#confirm').hide();
$('#order_submitted').removeClass('hide_msg');
})
})
</script>
Edited by npn2531, 12 August 2011, 20:28.
Posted 12 August 2011, 22:05
Posted 13 August 2011, 01:16
Posted 13 August 2011, 01:54
pantufas_online, on 13 August 2011, 01:16, said:
Posted 13 August 2011, 02:39
Posted 13 August 2011, 03:25
<?php if (tep_session_is_registered('customer_id')) {
$acc_link = tep_href_link('account.php');
$acc_title = HEADER_TITLE_MY_ACCOUNT;
$acc_logoff = tep_href_link('logoff.php');
$acc_title_logoff= HEADER_TITLE_LOGOFF;
} else {
$acc_link = tep_href_link('create_account.php');
$acc_title = HEADER_TITLE_CREATE_ACCOUNT;
}
?>
<td <?php echo $item_menu_04;?> nowrap="nowrap" onClick="document.location='<?php echo $acc_link;?>'"><a><?php echo $acc_title;?></a></td>
<td class="menu_separator"><?php echo tep_image(DIR_WS_IMAGES.'menu_separator.gif')?></td>
<td <?php echo $item_menu_06;?> nowrap="nowrap" onClick="document.location='<?php echo tep_href_link('contact_us.php')?>'"><a><?php echo BOX_INFORMATION_CONTACT?></a></td>
<td class="menu_separator"><?php echo tep_image(DIR_WS_IMAGES.'menu_separator.gif')?></td>
<td <?php echo $item_menu_07;?> nowrap="nowrap" onClick="document.location='<?php echo $acc_logoff;?>'"><a><?php echo $acc_title_logoff;?></a></td>
Posted 14 August 2011, 16:04
Posted 14 August 2011, 17:40
Edited by npn2531, 14 August 2011, 17:41.
Posted 15 August 2011, 00:19
Posted 15 August 2011, 02:19
Posted 22 August 2011, 23:13