Posts by lrpinheiro • 68 points
8 posts
-
2
votes1
answer115
viewsQ: ELK + REDIS - Duplicating data
Fala galera, I need a help... I have the following Logstash configuration files: agent conf. input { log4j { type => "bdj" port => 25827 } } filter{ json{ source => "message" } } output {…
-
0
votes3
answers2752
viewsA: What are indexes in SQL Server for?
They are elements that we use to index our data, that is, define a "position" it within a context. Much like a vector or array. With indexed data, searches are faster since you know their position.…
-
0
votes5
answers59481
viewsA: Take content from within a Div and put in Input value
You can only use pure Javascript to do this if you prefer... window.onload = function(){ var divconteudo = document.getElementsByClassName("produtosIntTitulo margin-top-30")[0].textContent;…
-
1
votes2
answers244
viewsQ: Javascript injection in Internet Explorer, returns null
I am developing an application that performs automation in internet explorer, I am using the Shdocvw to do this. My problem is I can’t get the return of an injection of Javascript public static void…
-
4
votes3
answers596
viewsA: Conditions in Javascript
This is available in other languages as well... The Great difference is that in Javascript you do not need to specify the type of your variable, IE, do not need to inform if it is a Boolean, String,…
-
0
votes2
answers153
viewsA: Can you perform a reset when accessing the page?
You can try using the function window onload. to do this. JS window.onload = function (){ document.getElementById("FormId").reset(); } Jquery $( document ).ready(function() { $('#FormId').reset();…
htmlanswered lrpinheiro 68 -
1
votes9
answers166445
viewsA: How to hide/show a div in HTML?
Javascript is very powerful and we can enjoy several language features As stated in one of the previous responses, its variable Disp is receiving the display value function Mudarestado(divid) { var…
-
7
votes2
answers50524
viewsA: How to enable and disable button from onclick or onchange from select
The event onchange should stay in the < select onchange="action()"> See if this solves your problem: <!doctype html> <html> <head> </head> <script…