Dear All,
I need to get the Last Click arguments.
My Javascript
<a href="#" onclick="show(fid1,1);">Link1</a>
<a href="#" onclick="show(fid2,2);">Link2</a>
<a href="#" onclick="show(fid3,2);">Link3</a>
Now I Need Another javascript Function that finds out the last click of show function's arguments. How to do it any idea?
function LastclickId(){
//code
}