Have you ever wanted to change the display text in the dropdown for a claims based login page? It's easy done with jQuery:
<script>
$(document).ready(function() {
$("select option[value='none']").text("Make your selection...");
$("select option[value='Windows']").text("AD users");
$("select option[value='Forms']").text("External user");
});
</script>
Just make sure that you have loaded jQuery before you run the script...
Inga kommentarer:
Skicka en kommentar