6 lines
129 B
JavaScript
6 lines
129 B
JavaScript
function yes() {
|
|
$('body').append('<form action="something" method="post"><button /><form>')
|
|
$('button').trigger('click')
|
|
}
|
|
|