Posts by willianvor • 3 points
3 posts
-
0
votes1
answer58
viewsA: Submit a sum online
Hello, see if that’s what you need: function Somar() { var num1 = document.getElementById("num1").value; var num2 = document.getElementById("num2").value; if (num1 == '') { num1 = 0; } if (num2 ==…
javascriptanswered willianvor 3 -
0
votes2
answers76
viewsA: How to extract the attribute from within A HREF with Delphi?
Solved, I did it that way: procedure TForm1.Button1Click(Sender: TObject); var doc : IHTMLDocument3; elements : IHTMLElementCollection; element : IHTMLElement; str : string; i : integer; begin…
delphianswered willianvor 3 -
0
votes2
answers76
viewsQ: How to extract the attribute from within A HREF with Delphi?
Guys I researched a lot and could not solve this problem. Here’s the thing, I can extract the text information, for example: <span class="style13">texto para extrair</span> But what you…
delphiasked willianvor 3