Posts by Ruan Montelo • 1,036 points
56 posts
-
0
votes1
answer39
viewsA: How do I copy/select a var in jquery?
How you need to copy the variable value ip for the user’s Clipboard, I imagine you will need an element to access the value by jQuery: $("#ip-server").click(function () { var ip = 'ip...'; var $temp…
-
3
votes2
answers263
viewsA: In Python, search a string from the information of a column?
If I understand correctly, you need to of all rows containing the contents of the column nome in the column texto. You can try something like the code line below, with the method isin, if to compare…
-
1
votes4
answers208
viewsA: How to get an index() of an array with the same element multiple times?
Algorithm If I understand correctly, you just need to of the index of the clicked letter. I imagine you need an algorithm following the logic of the function below: function…
javascriptanswered Ruan Montelo 1,036 -
1
votes1
answer90
viewsA: How can I filter two values in my object array?
If I understand correctly, you need to redeem the object that includes the ID you want, regardless of whether you are required or requesting to filter the other ID related to it. You can try…
-
-1
votes2
answers59
viewsA: Apply equal properties to different JS objects
As far as I know these days, there is no native way to do this in JS. What can be done is to create an auxiliary function that creates a property with a value in passed objects as argument for that…
-
1
votes1
answer89
viewsA: How do I get value from an internal object in a Json file?
If I understand correctly, you need to access one array within an array, something like: if (order.Data[0].Items.Length > 0) { order.ProductDescription =…