skip to Main Content

Problem with HTML/CSS/JS Form. Not working properly

Here is my code: https://codepen.io/raakh/pen/wvRqRGX 'use strict'; $(function() { $("input[type='password'][data-eye]").each(function(i) { var $this = $(this), id = 'eye-password-' + i, el = $('#' + id); $this.wrap($("<div/>", { style: 'position:relative', id: id })); $this.css({ paddingRight: 60 }); $this.after($("<div/>", { html: 'Show',…

VIEW QUESTION
Back To Top
Search