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

Change of radcaptcha label

1 Answer 156 Views
Captcha
This is a migrated thread and some comments may be shown as answers.
Sandy
Top achievements
Rank 1
Sandy asked on 15 Aug 2012, 05:23 PM
I am using RadCaptcha in our website and I want to change the label (type the code from the image) in to (type the letters from the image).I tried with CSS, but i can not able to override the label.Could you please suggest me how to override the label.

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 16 Aug 2012, 04:44 AM
Hi Sandy,

Try the following code snippet to achieve your scenario.

ASPX:
<telerik:RadCaptcha ID="RadCaptcha1" runat="server">
</telerik:RadCaptcha>

JS:
<script type="text/javascript">
    $(document).ready(function () {
        $("#RadCaptcha1_CaptchaTextBoxLabel").text('Type the letters from the image');
    });
</script>

Hope this helps.

Regards,
Princy.
Tags
Captcha
Asked by
Sandy
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or