Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~3K People Reached
About Me

Systems/Web Developer

Favorite Tags
Member Avatar for evank

I have a div in which I am placing several images, and by default they wrap so that each one appears below the one before it and they flow vertically downward. What I am wanting to do is to have them NOT wrap, and instead flow horizontally rightward. I've tried …

Member Avatar for Troy III
0
1K
Member Avatar for evank

I have a collection of (potentially) several hundred thousand image files that I need to generate hash digests for, and I'm unsure of the best algorithm to use. I'll be keying them all to a database based on their hash, so I need the best algorithm for avoiding accidental collisions …

Member Avatar for sarehu
0
277
Member Avatar for evank

I have a script that opens up a blank popup window, then writes some content to it, like so: [code]var popup = window.open('', 'window_id'); popup.document.open("text/html","replace"); popup.document.writeln("some content"); popup.document.title = 'page title'; popup.document.close();[/code] Now, in this newly opened popup window, I want to duplicate any stylesheets from the parent window. I …

Member Avatar for MattEvans
0
970
Member Avatar for evank

I'm trying to design a site that makes use of the [B]window.open()[/B] javascript method by opening certain links in a new window with a specific pixel size and position onscreen, but Internet Explorer (with default security settings) blocks most attempts...Is there any way around this, to let IE know that …

Member Avatar for digital-ether
0
175
Member Avatar for evank

I have a page where all the content is contained in one centered table of static size: [html]<table id="page_content" background="gfx/main_bg.gif" border=0 cellpadding=0 cellspacing=0 width=1024 height=768> <tr> <td> <!-- content goes here --> </td> </tr> </table>[/html] the page is fairly graphics-laden, so I want to hide it with a preload screen …

Member Avatar for vikonava
0
120
Member Avatar for evank

I'm trying to implement an AJAX solution for exporting tabular data on a page in certain formats, and i've determined that the best way to do this (for my purposes) is to grab the innerHTML of a table, send it off to a server-side script for processing into alternate formats, …

0
71