$(function() {
$(".pushme").text("Deneme");
});
Eğer tıklandığı zaman değişsin istiyorsan ;
$(function() {
$(".pushme").click(function () {
$(this).text("Deneme");
});
});
Konu: Button Text Değiştirme
$(function() {
$(".pushme").text("Deneme");
});
$(function() {
$(".pushme").click(function () {
$(this).text("Deneme");
});
});