1<html> 2<body> 3Image:<br/> 4 <img src="http://labs.trolltech.com/skins/trolltech_labs/categories/internet.png" width="80" height="80"/> 5 <br/> 6QT progress bar: 7<br/> 8<object type="application/x-qt-plugin" classid="QProgressBar" name="progressbar" height=30></object> 9<script> 10function display(){ 11 if (++document.progressbar.value != 100) 12setTimeout("display()", 50) 13} 14display(); 15</script> 16</body> 17</html> 18