skip to Main Content

JQuery mask use to a fixed domain email

I'm trying set fixed email mask, but it's not working... <div class="wrap-input100 validate-input" data-validate = "Digite seu usuário"> <input class="email input100 <?php echo (!empty($user_erro)) ? 'is-invalid' : ''; ?>" type="text" name="usuario"> <span class="focus-input100" data-placeholder="Email"></span> </div> <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.15/jquery.mask.min.js"></script> <script>…

VIEW QUESTION

Xcode – Get PDF from a UILabel text mask

I'm trying to get PDF from UIView with UILabel text mask. override func viewDidLoad() { super.viewDidLoad() let label = UILabel(frame: CGRect(x: 0, y: 0, width: 200, height: 200 )) label.text = "Label Text" label.font = UIFont.systemFont(ofSize: 25) label.textAlignment = .center…

VIEW QUESTION
Back To Top
Search