seaside : 2 events on html anchor
问题 In seaside I need to do two events - callback and go to the other url (google.com) on clicking a link but I am not able to do both of them. What could be possibly wrong here? Is there any way I can do both the events? html anchor newTarget url: 'www.google.com'; callback: [Transcript show: 'clicked on google.com']; with: ('www.google.com') . 回答1: Because >>callback: and >>url: both update the href attribute on an Anchor tag, you can't use both on the same anchor. You will have to solve this