php - Javascript onBlur - Magento Billing Email -
on magento onepage checkout want place onblur event on billing:email input, here code:
<div class="field col-md-6"> <div class="input-box"> <input type="text" onblur="showme()" name="billing[email]" id="billing:email" value="<?php echo $this->escapehtml($this->getaddress()->getemail()) ?>" title="<?php echo $this->__('email address') ?>" class="form-control input-text validate-email required-entry" /> </div> <script language="javascript" type="text/javascript"> function showme() { alert('hello'); } </script> </div>
i expecting showme()
function fire nothing happens, have done wrong?
Comments
Post a Comment