This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Listen to custom event | |
document.addEventListener("myCustomEvent", function(e) { | |
var object = e.detail.object; | |
log(e.detail.object +" has dispatched event: "+e); | |
}); | |
// Dispatch custom event | |
this.myevent.initEvent("myCustomEvent", true, true); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Progress bar · CodePen</title> | |
<!-- | |
Copyright (c) 2012 Made in Space, http://codepen.io/madeinspace | |
Permission is hereby granted, free of charge, to any person obtaining |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Autocomplete | |
----------------------------------*/ | |
.ui-autocomplete { position: absolute; cursor: default; } | |
.ui-autocomplete-loading { background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat; } | |
/* workarounds */ | |
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ | |
/* Menu | |
----------------------------------*/ |