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 strongm 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. silentq

    Flash Intro/ Iframe Help

    Ok, sorry for being unclear. What it does, or is upposed to do is: When the website first opens, the intro flash movie plays, once the site has stopped loading, the movie is replaced by the home page. this is what is actually happening: when you go to the site, the intro movie plays, and once...
  2. silentq

    Flash Intro/ Iframe Help

    Hi, what I'm trying to do is have a short flash intro play while my site loads, and once its done, replace the intro with the content of the index page. I'm using iframes to show the content of the home page and the flash movie. This is what I have: (index.php) <html...
  3. silentq

    Table input function

    thanks for your help
  4. silentq

    Table input function

    Hi I've made this function that, when you click on a cell it enters your word into that cell (the word you ebtered into the text box. I want to use just one function to be able to populate all cells. Like, you enter word, click cell C#, it enters it there, then you enter new word and click cell...
  5. silentq

    User Input in forms

    Well thanks for your help. I'll play around with your code to get it to do exactly what I want. Thank you.
  6. silentq

    User Input in forms

    Here is the code I have. Does this make sense? <body> <script language="javascript"> uInput = elem.value; sentence = "This is a Test sentence whose length will change " document.write(sentence); document.write("</p>"); document.write("Test Sentence Length: " + sentence.length )...
  7. silentq

    User Input in forms

    Sorry for being so unclear. what I want to know is, how to retrieve data that is input by a user in a form. So, say the length of a sentence is 49 characters, and user inputs '7' into the length field. The sentence now becomes only seven characters long.
  8. silentq

    User Input in forms

    Hi, I'm trying to make a function where a user input in a form changes the length of a string. I would do it this way in PHP: <? $width = $_POST['length']; . . . .?> <form> <input name ="width" type="text" value="<? echo $length; ?>"> </form> I want to do it in JS so that my forms are...
  9. silentq

    Re:Iframe(sorry, should have posted in last thread)

    Yes thats it. Now could I use this if I made another iframe and then move words from one to another?(changing the values in the parenthesis)?
  10. silentq

    Re:Iframe(sorry, should have posted in last thread)

    Sorry to post again in a new thread, the other one was marked as resolved so I figured nobody would look at it. I wanted to make another function that moves the text from the master(parent) page into the iframe. Here is the code again.(moveText) is the function that I cant figure out. <body>...
  11. silentq

    Iframe, button link.

    No, but I just switched some things around, and now it works perfectly. I'm still not sure what the problem was, but thank you for all your help.
  12. silentq

    Iframe, button link.

    The actual function doesnt seems to work. I just did the same thing, I added the form tags and tried in FF and IE6. In both browsers I get a page that has "this is word one" at the top, a button in the middle, but clicking the button doesnt change the word.
  13. silentq

    Iframe, button link.

    Thanks. I've changed it all to be on one page now, which is a little less messy, but it doesnt work still. <body> <style type="text/css"> #div1 { color:red } #div2 { color:blue } </style> <div id="div1"> This is word one </div> <iframe name=myiframe src=ipage3.php width=300 height=300...
  14. silentq

    Iframe, button link.

    this is what I have now: in a page 1: <style type="text/css"> #div1 { color:red } </style> <div id="div1"> This is word one </div> in page 2: <style type="text/css"> #div2 { color:blue } </style> <div id="div2"> This is word two </div> and now in the last page with the iframe: <iframe...
  15. silentq

    Iframe, button link.

    I've redone this a few times now, and the way somebody told me to do it was like this: enclose the initial text in a div tag, as well as the text in the iframe(which also needs to have an id. then I have to use this: document.getElementById([matertext div...
  16. silentq

    Iframe, button link.

    Hi, I've made a simple Iframe which replaces one text with another. This all works the way I want it to with a link. I want it to do the same except with a button. This is what I have. (the link below the </html> works, but I want it to be a button.) The buton I have doesnt work right. </head>...

Part and Inventory Search

Back
Top