Posts by Antonio Presto • 1 point
3 posts
-
0
votes2
answers111
viewsA: Javascript regular expression does not work within the form tag
Try something like that: // não use o mesmo nome da função, na variavel // ex: var celular=document.getElementById("celular").value; // function celular() {...} var minhasRegex = { telefone:…
-
0
votes3
answers112
viewsA: How can I specify a "Transition" value to be animated when using "Transform"?
Try something with Transition-Property: div { -webkit-transition-property: width, height; /* Safari */ transition-property: width, height; } or define more specific rules: .box>div {...} /**…
-
0
votes3
answers425
viewsA: Format CSS with PHP
It wouldn’t be something with \" ? <?php print_r("<div value='6_1' style='background-image: url(\"../img/banner-product.png\")'></div>"); ?>…