I have something like this:
<button id="button1" onClick="someFunc('arg1','arg2')"> </button>
Is it possible in JavaScript to change parameters of the function someFunc to look like below:
<button id="button1" onClick="someFunc('somethingDiff1','somethingDiff2')"> </button>