Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. bam720

    Chances of a 'century storm'

    I'm going to answer the actual questions asked, but instead provide a link to a more general answer. http://en.wikipedia.org/wiki/100-year_flood You can plug in the numbers and find out. I know that my Home Owners Insurance will be a little higher because i live in a "500 year" flood plain.
  2. bam720

    A puzzling code

    Thats pretty funny. I have no idea how Apple Code works (I'm only 24), but I looked at that code, and laughed. Then I tried reading the code out loud to my coworker and had an epiphany (I didn't get to the end of the first line) and My guess was what strongm said (I don't know how to do hidden)
  3. bam720

    Open New window with specified contents

    I worked around it by using var html = "html here"+ content.innerhtml+ "more html"; var doc = win.document' doc.open("text/html", "replace"); doc.write(html); doc.close(); not as pretty but gets the job done
  4. bam720

    Open New window with specified contents

    I get this in the console:
  5. bam720

    Open New window with specified contents

    I am on a page where I have some nifty graphs (made in css/html). I'd like to pass the contents of these graphs to another pop up page in case the user would like to print. I've grabbed the entire containing div element on my page and want to pass it the page below. The content is being passed...
  6. bam720

    Instantiate Class DB Connection

    I am having some trouble controlling my database connection. I have one module DbConnection.py that handles connecting to the database. I call it and get returned the database handle object just fine. as such dbh = DbConnection.new() I have another module to handle certain queries (this is...
  7. bam720

    IE7 weird overlay issue

    Thank you so much. Been pulling my hair out for hours.
  8. bam720

    IE7 weird overlay issue

    http://www.stoneclinic.com/athlete I'm seeing a weird overlay over the side nav and part of the image. The page validates as strict. It looks fine in every other browser I've tested (FF 2/3, Safari, IS 6/8) the only time I see it is in IE 7. Does anyone know what is going on? Screenshots...
  9. bam720

    100% height columns

    http://www.amipaperless.com/test2/privacy.php I am trying to get my left hand column to extend all the way to the bottom. General layout of page is: header (multi divs) content left (100%) mid (100%) footer I tried adding 100% to the body tag but no luck. Any other ideas? Thanks.
  10. bam720

    Full Width Menu

    In my local copy of CSS I had an "a hover" (just like that) before my menu declaration throwing it all off. Thanks CSS Validator :)
  11. bam720

    Full Width Menu

    I do not see it making a difference in either browser :(
  12. bam720

    Full Width Menu

    I am trying to use the sonofsuckerfish drop down menu. Its working fine in IE and FF, but in IE it's not taking up 100% width on the page. My FF is using a Serif by default to render fonts (which takes up the 100% using the auto width), whereas IE is something else. If I force the serif it...
  13. bam720

    Border Help

    I un-floated the bottom id and its all good now.
  14. bam720

    Border Help

    sorry just realized I forgot more relavant code: #border { width:720px;height:auto; border:1px solid #4F4F4F; margin-top:40px; margin-left:auto; margin-right:auto; text-align:left; clear:both; } ====================== html page... <div id="border"> <div id="#top"></div> <div...
  15. bam720

    Border Help

    I am creating a page that I want to have a border around the entire contents. +--------------------------+ | ************* | | +--+ +----------------+ | | | | | | | | | | | | | | | | | | | | | | | | | | | | |...
  16. bam720

    Race Condition

    So here's my trouble. I am trying to position some scroll bars on my page. These scrollbar positions are being persisted by Cookies. When the page loads I am not always able to read the cookies in time before firing my Position Scroll Bars Code. function CreateCookie(name,value) {...
  17. bam720

    Persistent Javascript Cookies

    We solved the issue. I was writing a cookie and the cookie was a list of items separated with commas. ISA will pull out all commas and semicolons to parse out authentication information then try to rebuild the cookie. We changed our delimiter to be a carat '^' and this solved it. There is...
  18. bam720

    Cookie Splitter

    Everything I have read has advised using ';' as a delimiter in javascript cookies (between name/value, expiry, and path). Is this a must have for the cookie to actually be set? The reason I ask is we are using ISA which parses all ',' and ';' from a cookie, then tries to rebuild it. This...
  19. bam720

    Cutting A Gold Bar

    My apologies for not responding. It has in fact been so long that I do not recall looking for a specific answer. If I recall correctly, I heard the puzzle and felt like sharing. I admit I do not read the forums as often as I should (I drop in unannounced time to time), I never responded...
  20. bam720

    Persistent Javascript Cookies

    I am currently on a project where we decided to use Cookies between post backs (scroll bar positions, list of expanded items). This works great if you hit the site internally, however we have a need to use ISA for remote access. When we get to the remote station we are finding that these...

Part and Inventory Search

Back
Top