Сообщение от isantel
|
Кнопка выглядит так
<a class="button" onclick="$(this).html('Are you sure?').attr('onclick', 'trashTrade(\'69220255\')')">Mark as done</a>
или так
<a class="button" onclick="$(this).html('Are you sure?').attr('onclick', 'trashTrade(\'69660142\')')">Mark as done</a>
После нажатия на нее, надпись меняется с "Mark as done" на 'Are you sure?'. Так же, на странице находится несколько подобных кнопок, от 1 до 6, нужно нажимать их все
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
a {
display: block;
}
</style>
<script type="text/javascript">
$(function(){
$('.button').click();
});
</script>
</head>
<body>
<a class="button" onclick="$(this).html('Are you sure?').attr('onclick', 'trashTrade(\'69220255\')')">Mark as done</a>
<a class="button" onclick="$(this).html('Are you sure?').attr('onclick', 'trashTrade(\'69660142\')')">Mark as done</a>
</body>
</html>