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. TheCandyman

    Need help with appendChild

    Thanks 1DMF, That's what i ended up doing; using jQuery. I have it so it increments label, input, and select fields. in form: <button id="add_row" class="btn">Add Another Person +</button> jquery: $("#add_row").click(function () { var row = $("#Mytable tbody > tr:last"), newRow =...
  2. TheCandyman

    Need help with appendChild

    I've been trying to get your sample code to work but can't get it past some errors: http://jsfiddle.net/ztxFn/
  3. TheCandyman

    Need help with appendChild

    To be honest, i heard the jQuery option and jumped straight to that. Did you look at that link i posted?
  4. TheCandyman

    Need help with appendChild

    I finally found the 'clone' option; yet another reason why jQuery rocks. I tried it and i'm getting closer. It seems to clone the row but then submits the form which isn't needed. Can this change the names for the <input> fields so the new row will be address2, city2, state2, etc? Take a look...
  5. TheCandyman

    Need help with appendChild

    Actually, i do have jQuery that i'm using another part on this page. I searched but guess i didn't use the right terms as i didn't see anything.
  6. TheCandyman

    Need help with appendChild

    I'm trying to have JavaScript create some html inputs when i click a button and just can't seem to find what i need when searching. I have the basics working but can't figure out some of the appendChild that i think i need. This does correctly add a row to my table with one <input> for each...
  7. TheCandyman

    Server 2008 R2 - Multiple Keyword Search

    Nope, I tried it and it doesn't work. It still pulls either keyword but not require both. :( Any suggestions?????
  8. TheCandyman

    Server 2008 R2 - Multiple Keyword Search

    I have a Windows 2008 R2 server with the File Serves role installed and have enjoyed the option in the past to search for keywords within files (see image). My question is how can I search and return files that only have multiple keywords within them? I can't find a list of Boolean Operators...
  9. TheCandyman

    ASP (classic) CDO emails to a mac server?

    Hi All, I have been using a third party that hosts my website and front end (smart host) email server. These have been running on two different Windows 03 boxes and everything has worked as expected for a long time; i can email using CDO from an asp webpage on IIS to the email server and the...
  10. TheCandyman

    How to set write permissions for MS Access in IIS7

    I'm running a 2008 R2 server with IIS7.5 and a legacy website that uses classic ASP and a hard coded MS Access database. I have everything moved and working but can't seem to get write permissions set on the database correctly. I set (through Explorer) file level read/write permissions for...
  11. TheCandyman

    Stop on lost focus

    I have a jquery script that correctly rotates several images in a loop after showing each for a few seconds. I'm noticing in the newest Firefox and Chrome browsers, and found the same after searching, that it I move off the tab or minimize the browser that the JavaScript stops/pauses until...
  12. TheCandyman

    Error on loop

    Good point on the loop. I take a peak at that. They reason I won't see any changes is because i have a link that shows the groups when clicked, but needed to cycle though all of them and make sure they are hidden first.
  13. TheCandyman

    Error on loop

    I'm trying to loop though a few Div's and set them to hidden/visible. I have tried this a few ways but can't seem to get a winning solution as both of my try's show errors. In the body: <div id="Group1" style="display:none;"> <p>Question 1</p> <p>Question 2</p> <p>Question 3</p>...
  14. TheCandyman

    document.form is undefined ??

    wow.... I'll go hang my head in shame. Thx!
  15. TheCandyman

    Aligning menu... on new website.

    @ audiopro - I wouldn't recommend it but it could be made to work, but i won't argue on that since it won't help kirnehator any. css with div's is more my style. @ kirnehator - On line 71 remove the line of inner code you have and insert this in between those <td> </td> tags. Problem...
  16. TheCandyman

    css main menu with lists

    In your css, find this: #p7menubar li.topItem That is setting the top border so just delete it or comment it out. Since your trying to make a basic menu with tabs, its easier to stand on the shoulder of others who make some great ones. Check this out here...
  17. TheCandyman

    Aligning menu... on new website.

    What you can do is set the height of the <td> to be the same size as you images within them on the left side. Look at Line 71: Was this: <td colspan="3"> <img src="http://boats4u.okanaganboating.com/images/boats4u_13.gif" width="181" height="10" alt=""></td> <td colspan="7" rowspan="4"><p><a...
  18. TheCandyman

    document.form is undefined ??

    I need another pair of eyes because this is driving me crazy. Granted, i struggle with JS but I'm still learning. I keep getting the 'document.form1.name46.value is undefined' error but can't see what its wrong. I have this fire when a drop down menu is changed so the page loads without...
  19. TheCandyman

    Is null or undefined

    Well, that would explain why i couldn't get it to work. Too obvious.
  20. TheCandyman

    Is null or undefined

    I'm having trouble with this simple JS. It looks at the anchor tag in the URL, breaks it into an array (which works) and changes the background color based on that value which is where i get an error. I can see the correct value saved in 'anchorValue' (a2697), but get an error saying it's...

Part and Inventory Search

Back
Top