Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Shaun Kelly
35,560 PointsCan someone explain what the following code is doing?
Can someone explain this code: onSubmit="rpt('id',this);"
1 Answer
Steven Parker
243,656 PointsThis appears to be an attribute setting that might be found in a <form> tag.
If so, it establishes the behavior to be performed when the form is submitted. At that time, a function (defined elsewhere) named rpt will be called, and passed two parameters. This first parameter is the literal string 'id', and the second is an object representing the form itself (the "this" object).
For a more complete analysis, you would need to provide more of the JavaScript code (particularly where rpt is defined) , and perhaps more of the context where this snippet was found.
Shaun Kelly
35,560 PointsShaun Kelly
35,560 PointsThanks Steven