Good evening, I try to change the icon of the password entry box. I have looked at other examples in the forum but I can not.
A greeting.
<!DOCTYPE html>
<html lang=”en”>
<head>
<link rel=”stylesheet” href=”../../jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”../../scripts/jquery-1.11.1.min.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxpasswordinput.js”></script>
<style>
.jqx-passwordinput-password-icon, .jqx-passwordinput-password-icon-rtl{
background-image: url(“http://simpleicon.com/wp-content/uploads/arrow-5.png”);
}
</style>
</head>
<body class=’default’>
<div id=’content’>
<script type=”text/javascript”>
$(document).ready(function () {
$(“#input”).jqxPasswordInput({ placeHolder: “Enter a Password”, height: 25, width: 200});
});
</script>
<input type=”password” id=”input”/>
</div>
</body>
</html>