Search results

  1. J

    Dynamic radio buttons and IE6

    Thanks to read the values from the submited for i use get-value(?) which returns a comma separated list of all the fields on the sumited form i then use a simple loop to step through the list and retrieve the data do i = 1 to num-entries(get-field(?)): x = get-field(entry(i...
  2. J

    deleting session cookie in speedscript

    over write the cookie with a cookie set to expire some time in the past eg SetCookie("sessID", string(v-sess-id), today - 1, time, ?, ?, ?).
  3. J

    Multiple Submits

    use javascript onsubmit event to test for the value of a javascript variable storing the submit status if submited donot re submit example <SCRIPT LANGUAGE="Javascript"><!-- formsubmited = false function chksubmit(fobj) { if (formsubmited) return false; formsubmited = true...
  4. J

    Dynamic radio buttons and IE6

    I am trying to create a form page which can contain input from dynamically created radio buttons below is an example which works correctly in Mozilla/Netscape but fails in IE6 does anybody have any ideas thanks /*****************************************/ <html> <head> <script...
  5. J

    button

    you can also try you can also try <button onclick="Javascript:history.back()">go back</button> which has the advantage on not requiring a form
Back
Top