Multiple OnLoad Events Syntax

What is the correct syntax for having multiple items attached
to the <body
onload=""> event? Do I separate items with a comma, a
semicolon, or is
there a different way?
Brandon
http://www.presentationsdirect.com

Thanks, but that seems a little too difficult for what I
need. The solution
below ended up working for me.
<body onload="action 1; action 2">
(i.e. only one set of double quotes)
Brandon
"Shane H" <[email protected]> wrote in
message
news:euh5kj$2p3$[email protected]..
> Hi,
>
> What I've been doing, and since it was taught to me by a
well-versed
> designer in Javascript, I put my functions into an
external javascript
> file, and place this at the end of the file-
>
> function addLoadEvent(func) {var oldonload =
window.onload;if(typeof
> window.onload != 'function'){window.onload =
func;}else{window.onload =
> function(){oldonload();func();}}}
> addLoadEvent(function(){Function1();});
> addLoadEvent(function(){Function2();});
>
> Where you see the addLoadEvent...Function1, etc. - all
you need to do is
> change the names of the Function1, Function2, etc. to
your function names.
> You can then add as many scripts as you need to load.
>
> HTH, take care,
>
> --
> Shane H
> [email protected]
>
http://www.avenuedesigners.com
>
> =============================================
> Back for 2007, close-up magic:
>
http://deceptivemagic.com
>
> Web dev articles, photography, and more:
>
http://sourtea.com
> =============================================
> Proud GAWDS member
>
http://www.gawds.org/showmember.php?memberid=1495
>
> Delivering accessible websites to all ...
> =============================================
>
>
> "Brandon" <[email protected]>
wrote in message
> news:euh4v8$202$[email protected]..
>> What is the correct syntax for having multiple items
attached to the
>> <body onload=""> event? Do I separate items
with a comma, a semicolon,
>> or is there a different way?
>>
>> --
>> Brandon
>>
http://www.presentationsdirect.com
>>
>
>

Similar Messages

  • Use multiple day event in Calendar region

    I am using a Calendar region in my application. One issue i have run into is, some of my events are multiple-day events, such as a conference. The calendar application does not seem to be able to deal with multiple-day events. It takes one date as the date. There doesn't seem to be any way of dealing with multiple day events. In my case, I have 2 date fields in my table associated with my calendar - a starting date, and an ending date.
    Has anyone found a way to deal with this situation? I don't want to have a separate entry for each date of the event. I'd like to be able to use my start date, and ending date fields.
    Thanks,
    John

    Scott,
    I took the SQL you used in your trigger and substituted my table names and fields. I am getting 3 errors. Here is what my code looks like after the substitutions (my table names are 'meetings_tbl' and 'meetings_tbl_cal'):
    CREATE OR REPLACE TRIGGER ai_meetings
    AFTER UPDATE OR INSERT ON meetings_tbl
    FOR EACH ROW
    DECLARE
    l_date_diff NUMBER;
    BEGIN
    IF UPDATING THEN
    DELETE FROM meetings_tbl_cal WHERE m_id = meetings_tbl.m_id;
    END IF;
    l_date_diff := meetings_tbl.meeting_end - meetings_tbl.meeting_start;
    FOR x IN 0..l_date_diff
    LOOP
    INSERT INTO meetings_tbl_cal
    (m_id, meeting_date)
    VALUES
    (meetings_tbl.m_id, TO_DATE(meetings_tbl.meeting_start + x));
    END LOOP;
    END;
    I am getting 3 errors:
    1) PL/SQL: ORA-00904: "MEETINGS_TBL"."M_ID": invalid identifier
    2) PLS-00357: Table,View Or Sequence reference 'MEETINGS_TBL.MEETING_END' not allowed in this context
    3) PL/SQL: ORA-00984: column not allowed here
    Maybe I'm not supposed to substitute ':NEW' with 'MEETINGS_TBL' ??
    Thanks for your help!
    John

  • Job not getting triggered for Multiple Scheduler Events

    hi,
    I would like a job to be triggered for multiple scheduler events, subscribing to a single event works fine. But, when I set multiple event condition, nothing works.
    My objective is to run a job, whenever job starts or restarts or exceeds max run duration.
    Note : Is it possible to trigger a job, when a job RESTARTS by subscribing to JOB_START ????????
    procedure sniffer_proc(p_message in sys.scheduler$_event_info)
    is
    --Code
    end sniffer_proc
    dbms_scheduler.create_program(program_name => 'PROG',
    program_action => 'sniffer_proc',
    program_type => 'stored_procedure',
    number_of_arguments => 1,
    enabled => false);
    -- Define the meta data on scheduler event to be passed.
    dbms_scheduler.define_metadata_argument('PROG',
    'event_message',1);
    dbms_scheduler.enable('PROG');
    dbms_scheduler.create_job
    ('JOB',
    program_name => 'PROG',
    * event_condition => 'tab.user_data.event_type = ''JOB_OVER_MAX_DUR''' ||*
    *' or tab.user_data.event_type = ''JOB_START''',*
    queue_spec => 'sys.scheduler$_event_queue,auagent',
    enabled => true);
    I tried this too...
    dbms_scheduler.create_job
    ('JOB',
    program_name => 'PROG',
    * event_condition => 'tab.user_data.event_type = ''JOB_OVER_MAX_DUR''' ||*
    *' and tab.user_data.event_type = ''JOB_START''',*
    queue_spec => 'sys.scheduler$_event_queue,auagent',
    enabled => true);
    Need help
    Thanks...
    Edited by: user602200 on Dec 28, 2009 3:00 AM
    Edited by: user602200 on Dec 28, 2009 3:03 AM

    Hi,
    Here is complete code which I tested on 10.2.0.4 which shows a second job that runs after a first job starts and also when it has exceeded its max run duration. It doesn't have the condition but just runs on every event raised, but the job only raises the 2 events.
    Hope this helps,
    Ravi.
    -- run a job when another starts and exceeds its max_run_duration
    set pagesize 200
    -- create a user just for this test
    drop user test_user cascade;
    grant connect, create job, create session, resource,
      create table to test_user identified by test_user ;
    connect test_user/test_user
    -- create a table for output
    create table job_output (log_date timestamp with time zone,
            output varchar2(4000));
    -- add an event queue subscriber for this user's messages
    exec dbms_scheduler.add_event_queue_subscriber('myagent')
    -- create the first job and have it raise an event whenever it completes
    -- (succeeds, fails or stops)
    begin
    dbms_scheduler.create_job
       ( 'first_job', job_action =>
         'insert into job_output values(systimestamp, ''first job runs'');'||
         'commit; dbms_lock.sleep(70);',
        job_type => 'plsql_block',
        enabled => false, repeat_interval=>'freq=secondly;interval=90' ) ;
    dbms_scheduler.set_attribute ( 'first_job' , 'max_runs' , 2);
    dbms_scheduler.set_attribute
        ( 'first_job' , 'raise_events' , dbms_scheduler.job_started);
    dbms_scheduler.set_attribute ( 'first_job' , 'max_run_duration' ,
        interval '60' second);
    end;
    -- create a simple second job that runs when the first starts and after
    -- it has exceeded its max_run_duration
    begin
      dbms_scheduler.create_job('second_job',
                                job_type=>'plsql_block',
                                job_action=>
        'insert into job_output values(systimestamp, ''second job runs'');',
                                event_condition =>
       'tab.user_data.object_name = ''FIRST_JOB''',
                                queue_spec =>'sys.scheduler$_event_queue,myagent',
                                enabled=>true);
    end;
    -- this allows multiple simultaneous runs of the second job on 11g and up
    begin
      $IF DBMS_DB_VERSION.VER_LE_10 $THEN
        null;
      $ELSE
        dbms_scheduler.set_attribute('second_job', 'parallel_instances',true);
      $END
    end;
    -- enable the first job so it starts running
    exec dbms_scheduler.enable('first_job')
    -- wait until the first job has run twice
    exec dbms_lock.sleep(180)
    select * from job_output;

  • Onload event after all images are loaded in an updateContent area

    Hi Spry Folks!
    I load a template into a page with a lot of img tags inside
    it. Everything works fine.
    Spry.Utils.updateContent (...HTML wit lots of img tags...)
    But the loading takes a while so I would like to hide it
    until all the images are loaded. Now I need an event which fires
    after the loading bar in the browser is gone.
    The onPostLoad observer fires much to early, cause the code
    is long loaded bevore all the images
    (...addObserver({onPostLoad:...)
    Same with the window.onload event (...window.onload =
    showContent();...) fires much to early.
    The only thing which is working is placeing the function in
    the onload event of the body tag.
    Like:
    <body onload="showContent();">
    But there I can't use it. And there is now body.onload
    handler as far as I know there is only the windows.onload handler
    and I thought always this is the same event than onload in the body
    tag.
    Has anyone an idea? Is there a spry event I haven't found for
    exact this problem?
    Thanks for your help!
    regrads
    marcus

    Hello,
    U might want to look in to the SpryImageLoader.js that comes
    with the 1.6.1 download. It loads your images, and allows u put
    callbacks on them, and set priority of loading them.
    http://www.dbooth.net/photos/
    uses it to (expect don forgot to upload the
    SpryImageLoader.js thats why its not really working :P )
    But that will give the basic idea of how to use it.
    Spry.Utils.ImageLoader.(url, callback(needs to be a function
    or null), priority)

  • Multiple start events in a process

    How does one add more than one start event to a process?
    "6.2.1.2 Using Multiple Start Events in a Process" of the modeling and implementation guide suggests this should be possible. I'd like to be able to create process instances using a none start event followed by a user task defined with the initiator pattern, so users can initiate the process. I also need to support creation of process instances via web service call. I should be able to accomplish this using a none start event followed by a receive task. However, I can't seem to get both in a single process. It only seems to allow a single start event.

    Sorry, I didn't realize that my component palette was being hidden - so I was missing a lot of activity/flow object types.
    Why is there only a small subset of flow objects displayed in the header of the process editor? (the one with the swimlanes)

  • "Multiple Tempo Events Detected" -- Propblem with Logic and Reason

    I have just migrated from a MacBookProp to a MacPro. All seems well except for the rewiring of Reason. When I rewire, I get the error message in Logic "Multiple Tempo Events Selected" asking if I want to review the list. Since no song is open in Reason, this would appear to be some kind of glitch. Also, there is a huige amount of latency between Reason and Logic. When I have just Reason open, there is no latency at all when I play. the same in Logic when I create a software instrument. But in rewire mode, it is about half a second! Any advice and help would be appreciated.

    Update on this: the tempo issue was relegated to one project where there was a tempo change within Logic, so I apologize. But I still have a tremendous amount of latency between the two programs.

  • Multiple day events

    I exported an .ics event from my work calendar and e-mailed it to my Mac at home.
    It was a vacation starting on Fri 12/18/2009 at 6:30 (when I start my work day), and ending on Mon 12/21/2009 at 3:00.
    My wife and I share our iCal via our .mac account, and she called me to say I needed Monday off as well - it showed up on her calendar as a Friday vacation only. Opening the event showed the correct time. A solution was to change it to full day events - now it showed as 4 days instead of as one day glancing on the month's calendar.
    Is there a set-up we have wrong, or is this just the way iCal displays multiple day events that aren't marked as full day events? (I hope it's the former, as it is not a good design at all).

    I exported an .ics event from my work calendar and e-mailed it to my Mac at home.
    It was a vacation starting on Fri 12/18/2009 at 6:30 (when I start my work day), and ending on Mon 12/21/2009 at 3:00.
    My wife and I share our iCal via our .mac account, and she called me to say I needed Monday off as well - it showed up on her calendar as a Friday vacation only. Opening the event showed the correct time. A solution was to change it to full day events - now it showed as 4 days instead of as one day glancing on the month's calendar.
    Is there a set-up we have wrong, or is this just the way iCal displays multiple day events that aren't marked as full day events? (I hope it's the former, as it is not a good design at all).

  • RemoteApp receives multiple KeyUp events without any keys being pressed

    Hi All,
    I have a very simple winforms app that I am using to try and track down what is happening with keyboard events when using RemoteApp.
    Basically I have a form and a textbox that track the KeyDown, KeyPress and KeyUp events.
    As soon as I start my app via RemoteApp I receive multiple KeyUp events without even pressing a key.
    Does anyone know why RemoteApp would be sending these random KeyUp events.
    The code of my simple test app is as follows:
    Public Class Form1
    Dim lst As New List(Of String)
    Private Sub AddtoList(str As String)
    lst.Add(str)
    End Sub
    Private Sub TextBox1_KeyDown(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown
    AddtoList("txt KeyDown" & vbTab & "KeyCode is " & e.KeyCode)
    End Sub
    Private Sub TextBox1_KeyPress(sender As Object, e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
    AddtoList("txt KeyPress" & vbTab & "KeyChar is " & e.KeyChar)
    End Sub
    Private Sub TextBox1_KeyUp(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyUp
    AddtoList("txt KeyUp" & vbTab & "KeyCode is " & e.KeyCode)
    End Sub
    Private Sub Form1_FormClosing(sender As Object, e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
    AddtoList("Form Closing")
    IO.File.AppendAllLines(Application.StartupPath & "\SimpleKeyUp_v2.txt", lst)
    End Sub
    Private Sub Form1_KeyDown(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
    AddtoList("Form KeyDown" & vbTab & "KeyCode is " & e.KeyCode)
    End Sub
    Private Sub Form1_KeyPress(sender As Object, e As System.Windows.Forms.KeyPressEventArgs) Handles Me.KeyPress
    AddtoList("Form KeyPress" & vbTab & "KeyChar is " & e.KeyChar)
    End Sub
    Private Sub Form1_KeyUp(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyUp
    AddtoList("Form KeyUp" & vbTab & "KeyCode is " & e.KeyCode)
    End Sub
    Private Sub Form1_Load(sender As Object, e As System.EventArgs) Handles Me.Load
    AddtoList("Form Load")
    End Sub
    End Class
    Simply opening and closing the app via RemoteApp gives the following results:
    Form Load
    Form KeyUp KeyCode is 9
    txt KeyUp KeyCode is 9
    Form KeyUp KeyCode is 16
    txt KeyUp KeyCode is 16
    Form KeyUp KeyCode is 16
    txt KeyUp KeyCode is 16
    Form KeyUp KeyCode is 17
    txt KeyUp KeyCode is 17
    Form KeyUp KeyCode is 17
    txt KeyUp KeyCode is 17
    Form KeyUp KeyCode is 9
    txt KeyUp KeyCode is 9
    Form KeyUp KeyCode is 18
    txt KeyUp KeyCode is 18
    Form KeyUp KeyCode is 9
    txt KeyUp KeyCode is 9
    Form KeyUp KeyCode is 18
    txt KeyUp KeyCode is 18
    Form KeyUp KeyCode is 9
    txt KeyUp KeyCode is 9
    Form Closing
    Cheers and Thanks in Advance!
    Dwayne

    Hi,
    It seems that your issue has been out of the scope of this forum.For coding issue,I suggest you ask in the
    MSDN forum to see whether anyone can help you out.
    Regards,
    Clarence
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Using onLoad event in jsp?

    Hi,
    i have created a link in my controller class dynamically and i want this link to load into my iView without clicking on Link control.
    That is , when the user clicks on the page having my iView he should see the contents of the link. For eg . an HTML report.
    How shall i accomplish this?
    i used onLoad event in the <body> but it  is not working.
    Thanks
    Saurabh

    Hi Saurabh,
    Try this:
    <head>
    <script language="javascript">
    function openwin(){
       var newWin = window.open("the real url", ....); // params and stuff
    window.onLoad = openwin();
    </script>
    </head>
    <body onLoad="openwin()">
    </body>
    </html>
    Regards,
    Pooja.
    Message was edited by: Pooja S

  • Can i use onload event in XSLT

    Hi all,
    I am working on xml and xslt.
    After the xslt tranfermation i wants to call a function defined in javascript.
    I just wants to use onload event but its i dont have idea how to call an onload event.
    thnx,
    raj

    Not sure what you mean by a CDATA section. But here is the XSLT file showing the template for the root element. The script is included using a <script> element, inserted in the <head> element. Should it be some place else?
    <?xml version="1.0" encoding="utf-8"?><!-- DWXMLSource="Trial procedure.xml" -->
    <!DOCTYPE xsl:stylesheet  [
        <!ENTITY nbsp   "&#160;">
        <!ENTITY copy   "&#169;">
        <!ENTITY reg    "&#174;">
        <!ENTITY trade  "&#8482;">
        <!ENTITY mdash  "&#8212;">
        <!ENTITY ldquo  "&#8220;">
        <!ENTITY rdquo  "&#8221;">
        <!ENTITY pound  "&#163;">
        <!ENTITY yen    "&#165;">
        <!ENTITY euro   "&#8364;">
    ]>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html" encoding="utf-8" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
    <xsl:template match="/">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title><xsl:value-of select="MovexUser/Title"/></title>
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <link href="resources/navigatorSpryAccordion.css" rel="stylesheet" type="text/css" />
    </head>
    <body id="body">
    --- The JavaScript funtions are called inside DIV elements here. ---
    </body>
    </html>
    </xsl:template>
    </xsl:stylesheet>

  • Time Evaluation with multiple time events

    Dear Friends,
    I have an issue in our current project. Kindly try to help me with a solution.
    We are working on Time Management module with Positive Time Recording method and evaluation- India. (Payroll module is not implemented)
    My issue is:
    Evaluation with multiple time events in a day: In our project, we have a scenario like the employees record multiple clock in and clock out times for one day and are uploaded into infotype 2011. But during time evaluation, only first Time event that is P10 (Clock In) and the last Time event P20 (Clock-out) in a day should be considered for evaluation, ignoring any multiple time entries in between duration in the table TEVEN (Infotype 2011).
    Pls let me know how this requirement can be met. Do we need to define any new PCR’s or create any functions? If yes, pls tell me the process in detail as I am new and implementing Time management (Positive Time recording with Evaluation) for first time. Try to help me as soon as possible.
    Thanks & Regards,
    Chiranjeevi
    Edited by: chiran reddy on Feb 15, 2008 2:20 PM

    is it not possible to enter only the first p10 and last p20 from the time systems into 2011.

  • Multiple life events on a same day

    I am using Oracle OAB's SSHR and processing life events related to termination and termination reveral.
    I reverse the termination of one employee and again terminated him so he has an open life event. Now his Hire and Term dates are same and so the system gives me error- :User Intervention Required: multiple life events occured on a same day".
    How can I process his open life event?
    Thanks if you can answer asap.

    Hi,
    you don't need any technical expertise for it. However, if you are using OAB for managing benefits, I suggest going through with the functional expert to understand he setup there and what life event should take precedence.
    Steps : Navigate to Collapse Life Events form (I think it's Total Compensation -> General -> Additional Setup)
    Give the winning life event name as whatever life event you want to take precedence (newhire or termination) and provide both the life event names on the right side. Choose the option @Void potentials"(or something like that) for the code and the winning life event date for the date.
    Regards,
    Vinayaka

  • International travel and multiple-day events with time zones

    I can't see how I can set an international travel easily as one event, e.g. from 2010-01-11 20:30:00+11:00 to 2010-01-11 07:10-10:00. I can set both as in one Time Zone, but that is not what I want. I want to set as my itinerary from a travel agent says, e.g. the start and end in different Time Zones. Although I can enter the departure and arrival as two events, that is not what I want to do. The air travel is one event, not two.
    Also, I often want to set schedules for multiple-day international meetings using the local time of the meetings while my iCal is still in my own Time Zone, but this is not possible. As soon as I select All Day in a new event, the Time Zone option disappears. Of course, I can change my iCal Preferences to use the target Time Zone (instead of my local one) and then set the meeting schedule, but this is not what I want to do. I want to be able to select a different Time Zone for multiple-day events while I am in my own Time Zone.
    These are rather common problems in any internatioanl businesses I suspect. It would be really handy to tie iCal with travel itinerary applications. If this is possible, I also would be able to get the information directly from travel agents in iCal format and it is a great potential for developing such applications.
    Does anyone know whether these are possible in iCal or whether Apple may be working on it?
    I also can't find a Feature Request for Apple, to ask about it. Does anyone know where to find it?
    Thanks.
    Message was edited by: yoichi.takayama

    I just didn't get the context here. Do you want to display multiple rows within one Outlook calendar event? If yes, I think it's impossible.
    Please reattach the sample which will be very helpful for others to understand your requirement, then possibly provide a solution.
    Bhasker Timilsina (ManTechs Inc)

  • OnLoad event on Body tag locked by template

    I have a behavior that needs to be called with an OnLoad event. The page I need it on is attached to a template, so the Body tag is not available for editing. What are my options? Thanks!

    If you are using DW>4 (that's DW4, not DWCS4), then investigate using Template Editable Attributes.
    Alternatively you could use some custom javascript in the editable region of the head of the page or even below the </html> tag to create an onload event, e.g.,
    <script type="text/javascript">window.onload=whatever();</script>

  • Javascript: don't get onload event

    I'm still having issues grabbing properties via javascript
    using various
    onload methods. I have a script that I'm using to toggle a
    checkbox based on
    whether another checkbox is checked or not:
    function toggleEnabledCheckBoxes(idOfToggler, idOfToggled) {
    if(document.getElementById){
    alert(document.getElementById(idOfToggler).checked);
    if(document.getElementById(idOfToggler).checked==true){
    document.getElementById(idOfToggled).disabled=false;
    else{
    document.getElementById(idOfToggled).checked=false;
    document.getElementById(idOfToggled).disabled=true;
    This works just fine if I call the function via a BODY onLoad
    event:
    <body
    onload="addLoadEvent(toggleEnabledCheckBoxes('cbx_selfHelp','cbx_legalCourtnetOnly'));">
    However, I'm trying to get out of the habit of using the
    onload event and
    instead want to use this addLoadEvent function:
    function addLoadEvent(func) {
    var oldonload = window.onload;
    if (typeof window.onload != 'function') {
    window.onload = func;
    } else {
    window.onload = function() {
    if (oldonload) {
    oldonload();
    func();
    addLoadEvent(toggleEnabledCheckBoxes('cbx_selfHelp','cbx_legalCourtnetOnly'));----------- ----------------------If
    I use that, the function still is called, but I get an error
    of:Error: document.getElementById(idOfToggler) has no propertiesI'm
    confused as to why this is.-Darrel

    darrel wrote:
    > I'm still having issues grabbing properties via
    javascript using various
    > onload methods. I have a script that I'm using to toggle
    a checkbox based on
    > whether another checkbox is checked or not:
    >
    > ---------------------------------
    >
    > function toggleEnabledCheckBoxes(idOfToggler,
    idOfToggled) {
    >
    > if(document.getElementById){
    > alert(document.getElementById(idOfToggler).checked);
    > if(document.getElementById(idOfToggler).checked==true){
    > document.getElementById(idOfToggled).disabled=false;
    > }
    > else{
    > document.getElementById(idOfToggled).checked=false;
    > document.getElementById(idOfToggled).disabled=true;
    > }
    > }
    > }
    >
    > ---------------------------------
    >
    > This works just fine if I call the function via a BODY
    onLoad event:
    >
    > <body
    >
    onload="addLoadEvent(toggleEnabledCheckBoxes('cbx_selfHelp','cbx_legalCourtnetOnly'));">
    >
    > However, I'm trying to get out of the habit of using the
    onload event and
    > instead want to use this addLoadEvent function:
    >
    >
    > ---------------------------------
    >
    > function addLoadEvent(func) {
    > var oldonload = window.onload;
    > if (typeof window.onload != 'function') {
    > window.onload = func;
    > } else {
    > window.onload = function() {
    > if (oldonload) {
    > oldonload();
    > }
    > func();
    > }
    > }
    > }
    onload=function(){
    toggleEnabledCheckBoxes('cbx_selfHelp','cbx_legalCourtnetOnly');
    But this will work only if you don't use the <body
    onload="stuff">. Your
    addLoadEvent function should work, perhaps it's the arguments
    it doesn't
    like.
    Mick
    >
    >
    addLoadEvent(toggleEnabledCheckBoxes('cbx_selfHelp','cbx_legalCourtnetOnly'));----------- ----------------------If
    I use that, the function still is called, but I get an error
    of:Error: document.getElementById(idOfToggler) has no propertiesI'm
    confused as to why this is.-Darrel
    >

Maybe you are looking for

  • 9i and 9ias installation on SuSE linux 7.3

    Hi, Are there any known issues involved in installation of 9i and 9ias on SuSE linux 7.3 ?? Also please let me know what are the workarounds for those problems and where the patches may be downloaded from ?? I am asking this question because SuSE 7.3

  • Error while deleting file

    Hello, I want to remove a file from a content area. But when i do that i get th efollowing error message: An unexpected error has occurred (WWS-32100) An unexpected error has occurred (WWS-32100) ORA-1403: ORA-01403: no data found ORA-01403: no data

  • Safari 6.0 5, iCal, Software update, Dashboard have crash reports

    Hallo! Safari 6.0 5, iCal, Software update, Dashboard crashing on my MacBook Pro. I have Mac Os X v10.7.5. Should I post here all crash reports? Thanks in advance.

  • Combine wizard with create from scratch?

    I am a novice user. I have an existing Word document that I am trying to convert to a writable PDF. In the middle of the form there is a large area where I would like to be able to cut and paste large blocks of test. When I use the wizard, it reads e

  • Regarding IW36

    Hi All,           I am creating a sub order  by using call transaction for iw36. However, the sub order is not getting created , it terminates with a message that ' Work center .......  does not exist in Plant 1000' .. IW36  copies the entries from i