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 Wanet Telecoms Ltd 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: *

  • Users: budapestnori
  • Content: Threads
  • Order by date
  1. budapestnori

    Adding Numbers which are Strings???

    I hope this is simple for someone reading this. I have a web page - http://tmh.netdbs.com/myers/clients/prints1.asp If you look at it, you will see a series of images, each image adjoining drop-downs with qty's for a particular print size for that a particular image. You will see I have it...
  2. budapestnori

    x = "document.forms.[0]."+id+"_4x6_cnt.value" ???

    Ok, I understand this is passing a string, but what I want is to accept a parameter in the function call that is an id here it is "id" and then assign the value of that form element to a variable...not in the form of a string...
  3. budapestnori

    Currency Conversion Function

    This function is working great, until a number 2000 or above is introduced, why? I didn't write it, i got it from the net. function formatCurrency(num) { num = num.toString().replace(/\$|\,/g,''); if(isNaN(num)) num = "0"; sign = (num == (num = Math.abs(num))); num =...
  4. budapestnori

    A running sum total of amts. on a form

    I have a web page that I have taken as far as I can. Can someone show me how to accomplish what is what I am obviously trying to do on this page: http://tmh.netdbs.com/myers/clients/prints1.asp You will see each image has a spot for current Image Total. This figure will need to be able to be...
  5. budapestnori

    "Previous - Current - Next" image script.

    Ok, I hope I can convey my thoughts enough for someone to help me out. I have a web page, which when loaded will query a database & load a recordset with the file names of various images. There will never be fewer than 1 images, but an unlimited number of total images. ( 1 to n ) I then have...
  6. budapestnori

    focus( ) to a bookmark on a page

    I have an asp script which generates a page that outputs records from database. As it does so, I generate a bookmark for each item. Viewers are then able to click an "on/off" link which calls an external script which updates the database and then returns the viewer to the original page. BUT, in...
  7. budapestnori

    Function not being called???

    Here is the code I have. If I put nothing the onclick="enlarge()" event handler, the function enlarge is called. But the moment I try to put anything in there, esp. theimg[0], the enlarge function is not being called any longer. The only thing I could possibly see is that in the sting...
  8. budapestnori

    Cookie Basic Question

    I want to set my first cookie, in it I want to store three items, color,bgcolor,color2. What is confusing me is would this need three cookies, one for each value? Or can I set them all in one cookie? Thanks.
  9. budapestnori

    Script to change HREF value

    I want to have a script that when run, can dynamically change the value of a <a> tag's href value. The reason being is I have an asp page for a photography gallery which has an div element in which images are displayed. I have several links on this page which allow the user to change the...
  10. budapestnori

    Fading Image Slideshow Script???

    Ok, I have a page which currently has a java applet which takes three images. Each one has three images in it. (you have to see to understand what I am saying, but there are three images in each image. See - http://tmh.netdbs.com/myers/default2.asp) I had previously used three seperate applets...
  11. budapestnori

    9 Random Images

    Ok,I hope I can explain this. I have database with two fields one is an auto-increment ID and the other field is a string whose value is an image file name, such as w_img_1.jpg, w_img_2.jpg., etc. When the page loads, I open the recordset and select all records, sorted by ID. Then, I use a...
  12. budapestnori

    Passing Dim to Javascript Var???

    So I am setting up a web site for a photographer. In his gallery, he will have five categories of images, ie., wedding, event, sports, etc. Normally, I would set up a template ASP page and pass it a variable such as cat=web in the url. Then, on the receiving page, I have a script that preloads...
  13. budapestnori

    Passing Javascript &amp; ASP Variables

    Hi guys, So I am setting up a web site for a photographer. In his gallery, he will have five categories of images, ie., wedding, event, sports, etc. Normally, I would set up a template ASP page and pass it a variable such as cat=web in the url. Then, on the receiving page, I have a script that...
  14. budapestnori

    Passing &quot;.style.backgroundColor&quot; from one element to another

    Hi Guys, I have a link in my page, which happens to have a class assigned to it. The class has a background and color specified. When clicked, I want to call a function called changecolor2 which will require one parameter. The parameter passed will be - this. I then want to take that link's...
  15. budapestnori

    window.Onload = function( ) ???

    Ok, I am sure this will be easy for some, but is has me stumped. I had had a web page with a call to a javascript function in the body tag working great. The function passed some params to an included js file which was inserted up in the body. Next, I came across a high-tech site that had a cool...
  16. budapestnori

    Filmstrip - How would you do this?

    Ok, so it may not be perfect, but you will see what I mean. Please look at this page. http://tmh.netdbs.com/atsa/virtual_hu.html Once there, notice the transparent image I made of a filmstrip. I really hacked this thing out, only because I didn't know how to do else wise. I don't need...
  17. budapestnori

    TD {text-align: &quot;.&quot;} - not working

    Hi guys, my name is Nora and I am new to this web site. I am reading a book on CSS and it says I can do this: TD { text-align: &quot;.&quot;} But when I put in my code, it does not work - Please help, here is my code - <html> <head> <meta name=&quot;GENERATOR&quot...

Part and Inventory Search

Back
Top