User Profile

Collapse

Profile Sidebar

Collapse
thetechgeek
thetechgeek
Last Activity: Mar 13 '08, 01:07 AM
Joined: Nov 13 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Ah, ok.
    Hmm... It would be useful if I could display "loading... " while the content is being loaded. How would this be possible?

    Thanks.
    See more | Go to post

    Leave a comment:


  • thetechgeek
    started a topic Dynamically loading content onto a page?

    Dynamically loading content onto a page?

    hey all,
    I'm a bit new to AJAX, and I was wondering how I could dynamically load content onto a page to prevent the user from having to reload the entire page, they'd just have to load the main content section that they want. Here's a page that I got my inspiration for this from: http://library.thinkquest.org/06aug/02048/. Try clicking on one of the tabs above the main content. You'll see a loading screen come up for a second, and then the...
    See more | Go to post

  • thetechgeek
    started a topic Load text from external file?

    Load text from external file?

    Hey all,
    I was wondering, how could I load text from an external file? It would be located locally on the server, probably in the same file path.

    Also, what format could I make the file in, so that the javascript script looks for a user name, and then retrieves an array that corresponds to what the user wants?

    I need the javascript file to set a variable that is the same as the one it is looking for (the user's...
    See more | Go to post

  • thetechgeek
    started a topic Problem with javascript sizing div's...

    Problem with javascript sizing div's...

    Hey all,
    I'm pretty new to javascript, and I need to create a website layout that has two columns of equal size. So, I've created the following script:
    Code:
    // navsizer.js
    
    document.onload = size();
    
    function size() {
      var pl = document.getElementById('page_left');
      var pm = document.getElementById('page_middle');
      pl.style.height = pm.style.height; 
    }
    But,...
    See more | Go to post

  • thetechgeek
    started a topic Prevent highlighting of a drop down menu?

    Prevent highlighting of a drop down menu?

    Hey all,
    I've created a pretty nice-looking drop-down menu, and I need to prevent users form highlighting the text in the menu item, because it looks kind of ugly.

    Here's an snippet of my menu structure:
    Code:
          <div id="menu">
            <ul>
              <li><a class="first_btn" id="file_btn" onClick="ShowHideFile();">File</a>
    ...
    See more | Go to post

  • thetechgeek
    started a topic Resize window to fit content?

    Resize window to fit content?

    Hello everybody,
    I'm creating an online text editor using javascript (and a bit of PHP), and I need to shrink my window to fit the size of the content within the page (mainly a textarea). How could this be accomplished?
    See more | Go to post
No activity results to display
Show More
Working...