Results 1 to 2 of 2

Thread: how can i send event object with php string?

  1. #1
    Join Date
    Sep 2007
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question how can i send event object with php string?

    PHP Code:
    $tree_string .= "<tr class='td-data-blank'><td idth= 40 ></td><td  idth= '100%' id='s_$subroute_id' align='left' onclick='clickOnElement(event)'  class=bsmall style='color:#ffffff;cursor:pointer'>$subroute_name</td></tr>"
    i want to send event object in clickOnElement(). how can I??

  2. #2
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    Code:
    $tree_string .= "<tr class='td-data-blank'><td idth= 40 ></td><td  idth= '100%' id='s_$subroute_id' align='left' onclick='clickOnElement(this)'  class=bsmall style='color:#ffffff;cursor:pointer'>$subroute_name</td></tr>";

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •