Feedback on: irt.org FAQ Knowledge Base Q955
Worth:
Very worth reading
Comments:
why it doesn't work on my
computer?
Worth:
Worth reading
Length:
Just right
Technical:
Just right
Comments:
___.src='javascript:\'#define x_width 16\n#define x_height 16\nstatic char x_bits[] = {\n 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55};\n\'';
=> this works
Worth:
Very worth reading
Length:
Technical:
Comments:
It doesn't work for me either. This hmtl page (see below) just shows 2 red crosses where the images should be. What am I doing wrong?
Cheers.
<html>
<head>
<script language="JavaScript">
function binary(d) {
var o = '';
for (var i=0; i<d.length; i=i+2) o+=String.fromCharCode(eval('0x'+(d.substring(i,i+2)).toString(16)));
return o;
}
gif2 = binary('47494638376120001000800000000000FFFFFF2C00000000200010000002208C8FA9CBED0FA344A0D609019E7A47DB799938924A189A07AA9E570BC7F2BC15003B0A');
</script>
</head>
<body>
<img src="javascript:gif2">
<img src="javascript:binary('47494638376120001000800000000000ffffff2c00000000200010000002208c8fa9cbed0fa344a0d609019e7a47db799938924a189a07aa9e570bc7f2bc15003b0a')">
</body>
</html>