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 SkipVought 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. BabyJeffy

    Code not working in FireFox!!! PLEASE HELP!!!!!!!!!!!

    Given you worked more that 2 days on this problem ppepin - how about awarding some recognition (a common way to do this is by clicking the purple star link) to vacunita for his assistance! Nicely spotted, vacunita. Jeff Visit my blog [!]@[/!] http://www.coderambler.com/ Visit Code Couch...
  2. BabyJeffy

    Canvas Tutorial and related Cheat Sheet

    I've been brushing up on HTML5 knowledge recently (partly due to being asked more questions by developers new to the topic). I have found this article (linked to from Ajaxian.com) to be a very good summary and overview of the Canvas object. It contains links to several very good resources: -...
  3. BabyJeffy

    Newbie Question: Code generated by Dreamweaver posted into Outlook

    I'm not going to bother trying to reproduce your problem (I don't have the offending applications installed - nor want to install them). I shall offer 2 things for you to try, though: 1) Remove all whitespace around the area where the problem is happening (carriage returns, spaces, tabs -...
  4. BabyJeffy

    using a variable in a google map script

    Here is a good reference for all the cool stuff you can do with the Google Maps API: http://code.google.com/apis/maps/documentation/reference.html Moving on, I have rewritten one of the functions with more useful variable names - so it makes a little more sense. The key is to populate the 3...
  5. BabyJeffy

    using a variable in a google map script

    If you know very little about Javascript, how can you be "sure" that what you request is a simple fix? By your own admission you don't know... so why make such a presumption? This isn't a "can you do this work for me for free" support site. If you have a genuine problem, come back and ask for...
  6. BabyJeffy

    Google open sources it's JS tools online

    I caught this from Slashdot earlier today. They have an online app that you can use to paste in your Javascript and then receive an optimised (and minified) version of your code (that is functionally the same). It also gives you warnings and identifies errors in your code. From the Google Code...
  7. BabyJeffy

    RSS reader needed

    Try this link: http://tinyurl.com/ykncfve Cheers, Jeff Visit my blog [!]@[/!] http://www.coderambler.com/ Visit Code Couch [!]@[/!] http://www.codecouch.com/ Make sure your web page and css validates properly against the doctype you have chosen - before you attempt to debug a problem...
  8. BabyJeffy

    RSS reader needed

    A quick follow-up on this... I would consider using Google Reader as well. This is browser agnostic - so you could use whatever you liked. Cheers! Jeff Visit my blog [!]@[/!] http://www.coderambler.com/ Visit Code Couch [!]@[/!] http://www.codecouch.com/ Make sure your web page and css...
  9. BabyJeffy

    RSS reader needed

    I would recommend Firefox as an excellent RSS Reader. I've used IE7 and IE8 RSS Readers, but I think the Firefox one is nicer. I don't know how you can limit it to only Wordpress (and further, Wordpress within your own company), but I would assume you would only subscribe to RSS Feeds that you...
  10. BabyJeffy

    divs height and scrollbar

    Use CSS. Add a height style to the div1 (and add overflow auto to it to show a scroll bar if the content is gong to be more than the height). No javascript needed. Cheers, Jeff Visit my blog [!]@[/!] http://www.coderambler.com/ Visit Code Couch [!]@[/!] http://www.codecouch.com/ Make sure...
  11. BabyJeffy

    does the movement of a div on another div trigger onmouseover?

    No. Only the movement of the mouse over an element will trigger the onmouseover event being fired. I don't know about all the other stuff you have posted... I just answered the question you asked. If you are making a menu, consider using something like the Suckerfish menu solution. It's...
  12. BabyJeffy

    Access to 2nd array's array - how?

    Here are some examples that might help you. They are all client-side javascript, and attempt to show one way you might approach this problem. Note, I chose not to use push. var arr = []; arr[arr.length] = [45, "The cat sat on the mat"]; arr[arr.length] = [22, "The dog broke the toy"]...
  13. BabyJeffy

    Application crashing because of a "&" in string - Help

    You are doing it correctly. You would get a string back from the value property... so all is fine. Prove it to yourself by making a small html file that tests it: <html><head><title>Test Page</title> <script type="text/javascript"> function testCode() { var DistCustCompany =...
  14. BabyJeffy

    Javascript Comments Engine

    I wondered if anyone had used a Javascript comments solution that can be implemented on any web page (and was in a position to recommend it). This means no back-end changes... purely a front-end call to the 3rd party, and the comments (for that page) are returned and surfaced on the page. It's...
  15. BabyJeffy

    Popup Window Close issue

    Surely there is no difference between the client-side source code of your popup page using Firefox and IE? You could view source using Firefox. Cheers, Jeff Visit my blog [!]@[/!] http://www.coderambler.com/ Visit Code Couch [!]@[/!] http://www.codecouch.com/ Make sure your web page and css...
  16. BabyJeffy

    Popup Window Close issue

    Well... if you can't follow simple directions: ... then chances are we're not going to get very far with this. ASPX code is not the same as "client side". I have no interest in wading through all that junk... I am only interested in the rendered client-side source code. That's all that can...
  17. BabyJeffy

    Popup Window Close issue

    I don't understand - you will have to be a lot more precise. When you say button click... that implies there is a button to click (on the popup page). If there is, then the button must be in a form (otherwise your code will not validate - you do have validating code, right?). So... when you...
  18. BabyJeffy

    Javascript Show/Hide in PHP Loop problem

    I assume you want to be able to click a cell in column 1 of your table, and have all the other cells in that row display (and I assume any other set of cells that were previously visible as the result of a click, to be hidden). If this is the case, then you need to use javascript to identify...
  19. BabyJeffy

    BG image keeps vanishing

    We often fix these IE specific problems by trigger the hasLayout property on the node. This can be done using "zoom:1", or setting a background-color etc. Just a thought. Cheers! Jeff Visit my blog [!]@[/!] http://www.coderambler.com/ Visit Code Couch [!]@[/!] http://www.codecouch.com/ Make...
  20. BabyJeffy

    The best way to load external Javascript

    I'll set up a test harness and do some testing using defer... but I have a sneaky suspicion that whilst it's supported by MS browsers, it's effectively ignored by the others. I will do the work to confirm this... and I'll report back to this thread. @feherke - there are a lot of "hint" and...

Part and Inventory Search

Back
Top