This is a migrated thread and some comments may be shown as answers.

How to change upload button text?

1 Answer 554 Views
Upload
This is a migrated thread and some comments may be shown as answers.
Tomaz
Top achievements
Rank 1
Tomaz asked on 13 Sep 2012, 11:58 AM
Idea is to translate Ui so I need to change upload button text.
Any idea?

My code:

$(document).ready(function () {
 
$("#_UploadedFiles").closest(".k-upload-button").find("span").text("bla bla");
});

Its work when I run code in Firebug.

Tomaz

1 Answer, 1 is accepted

Sort by
0
Justin
Top achievements
Rank 1
answered on 14 Dec 2012, 08:41 PM
You need to change the span, not the class itself.

$('.k-upload-button span', '#_UploadedFiles').html('blah blah');


closest behaves differently on different browsers because it's based on the DOM tree.
Tags
Upload
Asked by
Tomaz
Top achievements
Rank 1
Answers by
Justin
Top achievements
Rank 1
Share this question
or