Guest User

Untitled

a guest
May 20th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. getDetailsLocalnameInput = function(e) {
  2. getDetails(localnameInput.value);
  3. YAHOO.util.Event.preventDefault(e);
  4. YAHOO.util.Event.stopPropagation(e);
  5. };
  6.  
  7. getDetailsLocalnameInput = function(e) {
  8. getDetails(localnameInput.value);
  9.  
  10. if(window.event){
  11. e.cancelBubble=true;//In IE
  12. }else{
  13. evt.stopPropagation();//in Others
  14. }
  15.  
  16. //YAHOO.util.Event.preventDefault(e);
  17. //YAHOO.util.Event.stopPropagation(e);
  18. };
Add Comment
Please, Sign In to add comment