Posts by David Domingues • 19 points
4 posts
-
0
votes1
answer38
viewsA: Regular expression for match content between ('<' or "></") and ('>')
I used a parser to generate an object that allows working with the text in XML format: const parser = new DOMParser(); const xmlDoc = parser.parseFromString(this.mockXml, "text/xml");…
-
0
votes1
answer38
viewsQ: Regular expression for match content between ('<' or "></") and ('>')
From text in XML format: <shipto attr="xpto"> <name>Nordmann</name> <address>Langgt 23</address> <city>4000 Stavanger</city> </shipto> I want to get…
-
0
votes1
answer55
viewsQ: auto-populated form with the remaining data from one of the selected fields
I wanted to have a dynamic form where the only thing asked is the selection of a user u from a list of users passed to the model from a controller, the email and status fields should be…
-
1
votes1
answer33
viewsQ: I have a search form with 3 fields, at least one of the first two must be filled, the other is optional
<form> <div class="form-group"> <label for="input1">Input 1</label> <input class="form-control input-sm" id="input1" type="text"> </div> <div…
jqueryasked David Domingues 19