Posts by Lugarini • 248 points
11 posts
-
2
votes2
answers1097
viewsQ: Excel vba - Httprequest GET
I am trying to do a GET in VBA in Excel, and found several examples, below is what I am using: Sub http() Dim MyRequest As Object Set MyRequest = CreateObject("WinHttp.WinHttpRequest.5.1")…
-
1
votes2
answers853
viewsA: How to get input value by clicking the div(multiple Divs with the same class) with jquery?
Try to catch the class idPremio nearest: $( ".premios" ).click(function(){ valor = $( this ).closest( ".idPremio" ).val(); }); or try to find it so: $( ".premios" ).click(function(){ valor = $( this…
-
2
votes1
answer1292
viewsQ: IIS works only on localhost
I’m using IIS on a Windows Server 2012 R2, by AWS Amazon EC2. But I have a problem, I can access the site only on the localhost. When trying to access from another machine by IP, returns the…
-
1
votes1
answer100
viewsQ: jLln - Make dynamic query by taking 'Select' values
I’m using jLinno to search for in a Array of Objetos I would like this search to be dynamic, taking the values of Selects my example: <select id="firt"><option>Select…
-
0
votes2
answers25883
viewsA: How to remove backslashes ( ) and quotes (") from a string?
Voce can use replace(): str.replace('Item a ser removido', "O que sera colocado no lugar"); in your case: str.replace('"', ""); //para remover a (") str.replace('\', ""); //para remover a (\)…
-
0
votes3
answers2752
viewsA: What are indexes in SQL Server for?
Indexes (Index) are disk structures associated with tables or views, which speed up the recovery process of the rows of a table or a view. These indexes may contain keys from one or more table…
-
1
votes2
answers1628
viewsQ: How to add Indice to an array
I am creating an Array in Javascript in the following format: series = [{ name: 'Tokyo', data: [7.0, 6.9, 9.5] }, { name: 'New York', data: [-0.2, 0.8, 5.7] }] But in some cases, I have to add new…
-
3
votes2
answers955
viewsA: Change the image size according to its URL
this function is used to retrieve URL parameters: var QueryString = function () { // This function is anonymous, is executed immediately and // the return value is assigned to QueryString! var…
-
0
votes1
answer1021
viewsQ: How to Build Object Array
I’m trying to build an Object Array in Javascript, but the result is not as expected. That’s how I’d like it to stay: But this is how it’s getting: That’s the code I’m using: var wo = new Array();…
-
2
votes1
answer655
viewsQ: How to generate data for Graphics
I am making a page that will have several types of graphics... But my base is coming by jQuery, Example: var wo = new Array(); var listItemEnumerator = this.customlist.getEnumerator(); while (…
-
-1
votes1
answer307
viewsA: When you click on a link, close all open Ivs and open a specific one?
does something like this... when you click on the div, give an Hide to it ( display:None ) and the others you give a show ( display: block ) $( "a" ).click(function({ this.hide(); // ou this.css(…