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 John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by thechasboi

  1. thechasboi

    Javascript close and reload parent issue with Safari

    In order to close the window and for that fact opening a window using window.open I use a variable to do the work for me. Example win=window.open(...); win.focus(); win.close(); If you are using a pop up window You can create a function on the opener to reload the opener and a function in the...
  2. thechasboi

    Safari problems again

    Thank you for the replies. In regard to the last post I was having trouble figuring out how to show you my problem because I was not sure what it was. The same in this case. DaButcher this is actually a simulation of some thing that happens on the site. It is something that is similar in...
  3. thechasboi

    Safari problems again

    I have this effect that needs to be smooth and visible in safari but for some reason it is not visible in safari 2.x and does not work properly in safari beta. Please help me get this working. It is part of an overall problem I have with safari. Here is the link to the page to test. http://...
  4. thechasboi

    is there any safari experts on thig forum

    I do not have this fix for safari up yet in the demo. It is how ever in the full app.
  5. thechasboi

    is there any safari experts on thig forum

    khat Fair enough I do recall you mentioning that before. I asked shortly after you mentioned this if is was possible if it were loading and no one answered. Well I took a plunge and tried. I did how ever think the first time I look into this problem that it was that function but had no idea...
  6. thechasboi

    is there any safari experts on thig forum

    I found this problem by dclaring a var that is the current time then at the end of the function alert the difference between now and that var and wow it took safari 6-7 seconds per object to do this task where the other browsers were less than a .25 seconds per object. Now it really screams...
  7. thechasboi

    is there any safari experts on thig forum

    I have a fix for this problem I just need to integrate that into the obfuscated code. Going to be a pain but probably tomorrow will be done. I will have questions about the current version of safari and its innerHTML replacement problem. Plus possible two or three others. THanks for the replies.
  8. thechasboi

    is there any safari experts on thig forum

    I have been reading some article one particularly pretty interesting was something about closures and accidental closures in ecma scripting, which this app obeys. I found that when I create the objects inside the function I called libinit() it seems that I create accidental closures of my...
  9. thechasboi

    have hidden div show containing form when link is clicked

    What you need to do is use CSS to layer your page. Then once you layered your page you could use the div layer with the appropriate form in it and display:none that element. There are functions that are freely available that slide your "invisible" div from the top location to "open" position...
  10. thechasboi

    is there any safari experts on thig forum

    j4606 I look and looked while loading safari and reloading safari for leaks in the memory in the task manager. I see no increase in memory usage when either the full version or the demo is or both at the same time are loaded. I inserted return true in all the functions that do not return...
  11. thechasboi

    is there any safari experts on thig forum

    I have tried to stagger the timeouts on the member functions and still no difference in the length of time to load. cLFlaVA you got any ideas?.
  12. thechasboi

    JavaScript Manually Operated Slideshow Wanted

    First off you should use document.getElementById('imageID').src ten you have to use this code to create a source object so the image will allow you to replace it source. This work great I have used this and recommended this in the past. var imageSRC = new Image(); imageSRC =...
  13. thechasboi

    How to return a functions

    return back;
  14. thechasboi

    is there any safari experts on thig forum

    Thanks for the replies and for looking at the demo. First I took out the css file since they are no longer used, same slowness. The full app has the ; placed at the end of each function. The obfuscated version runs the same as the unobf, there is perceivable differences but not much. I...
  15. thechasboi

    How to access URL parameters

    In cases like this I use naming conventions to short cut the need to get more information from some other element. I use a naming convention where I get the info I need from either the ID or the name of the element in question. By the way onclick you can pass the parameter of the element with...

Part and Inventory Search

Back
Top