Posts by Francisco Martins • 89 points
4 posts
-
0
votes2
answers68
viewsA: How to show and hide a list
Before opening the list of cities of a country, ensure that all lists are closed: //Antes de abrir o novo dropdown var elementosAFechar =…
html5answered Francisco Martins 89 -
-1
votes2
answers109
viewsA: html page background with css
Remove html from the css block: remove -> html, Upshot: body { display: table; width: 100%; height: 100%; padding: 100px 0; text-align: center; color: white; background: url(scary_wolf-wide.jpg)…
-
4
votes1
answer63
viewsA: How to prevent the creation of records where one of the fields has the value already registered?
Create a UNIQUE composed by (Name, gender) . Create Table genero_filme( NomeF varchar2(30) NOT NULL, genero varchar2(20) NOT NULL, --Restrições de intregridade --1. Não existe gêneros diferentes com…
-
2
votes2
answers219
viewsA: Regex to search for word inside tag with CDATA
I suggest the following expression Refex : (?<=CDATA\[)(.*?)(?=\]) Example of implementation String casoUm = "<text><![CDATA[Casa]]></text>"; String casoDois =…