Posts by GOliveira • 162 points
12 posts
-
0
votes0
answers52
viewsQ: Placing CANVAS inside an SVG, is it possible?
I’m trying to create a quiz for visitors to the page to mark where they’re feeling pain in their body. My idea was to generate an area that was possible to draw/paint but that was delimited by the…
-
1
votes1
answer375
viewsQ: Error in Python function ("is not defined")
This was the simplest code I found in a demonstration of a chained list in python, I just couldn’t understand why it’s not working class NodoLista: #Esta classe representa um nodo de uma lista…
-
0
votes1
answer117
viewsQ: How to pick up part of the string from the size of a word?
I want to take only the name of the discipline of an H1 containing the following text: "ENF N1A METHODOLOGY OF SCIENTIFIC RESEARCH (MES)". In this case what interests me in this string is the value…
-
0
votes1
answer225
views -
1
votes1
answer250
viewsQ: Query to return middle text from a field
I have an appointment that returns some class names/disciplines, but I wanted you to bring me only the names of disciplines. Below follows the query result with the default…
-
1
votes1
answer43
viewsQ: Is it possible to monitor all of the page’s Responses and Headers to use as a function trigger?
I have a script that needs to be executed only after the return of a page request, because the request returns HTML content, and the function I want to execute soon after, implements that received…
-
1
votes1
answer1289
viewsQ: Access variable in and out of a javascript function?
I am trying to update some questions on a page, going through an _for with the number of steps equal to the total of questions, to inject in each passage a question via $.post(), and wait for the…
-
1
votes1
answer63
viewsQ: How to store span tag texts in a jquery/javascript array?
I need to get the text that is contained between the tags span. That’s the structure I’m running through: <table> <thead> </thead> <tbody> <tr> <td colspan="9"…
-
2
votes1
answer564
viewsQ: How to copy attr from page to clipboard with Javascript?
Has a page element (attr) I want to copy to clipboard (Ctrl+C) automatically whenever I enter it. I have already been able to find it with Jquery. On the page it’s like this: <div…
-
2
votes4
answers33862
viewsA: How to search for values in column A that do not exist in column B?
The function you seek is the PROCV With the formula I put below, you are scanning the range $A$1:$A$5 in search of the content that will be in the cell marked in the first parameter (which in this…
-
1
votes1
answer599
views -
3
votes2
answers466
viewsQ: How to merge two multidimencional arrays, disregarding repeated values?
I have two arrays multidimensional. An array I’m bringing from a file . json, the other is coming from one POST via Ajax. My idea is to generate a new array with the merger of these other two arrays…