Jump to content

Insert Property on object


turbox
 Share

Recommended Posts

How i can add an element to an object?

px.

<input type="text" onkeyup="alert('a')" size="5" value="" id="inputx" tabindex="13" name="x"/>

to be

<input type="text" onkeyup="alert('a')" size="5" value="" id="inputx" tabindex="13" onblur="alert('lfocus')" name="x"/>

Link to comment
Share on other sites

Try StringReplace for something simple.

like:

$string = '<input type="text" onkeyup="alert(''a'')" size="5" value="" id="inputx" tabindex="13" name="x"/>'

$new = StringReplace ($string, '" name', '" onblur="alert(''lfocus'')" name')
MsgBox (0, "", $new)

Otherwise I believe the eltorros' XML DOM wrapper could do it, and its probably more versatile... :)

Cheers,

Brett

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...