I have a Javascript class that contains
add remove removeall update . . . updateLik . .
functions.
And in my Serverside script a have Links like
AddNow if user click on the DIV, the function "add" will be called. and the add function calls in turn the updateLink function.
updateLink replaces the onclick attribute to "myobject.delete(100)"
Now my problem is that in updateLink function i had to hardcode the objectname to call its delete function.
Is there any way to get the objectname, or any other solution? Thanks