Posts by Lucas Araujo • 75 points
6 posts
-
0
votes0
answers114
viewsQ: Picking Items from a Json with php
I have the following . Json object(stdClass)#1 (4) { ["card-header"]=> object(stdClass)#2 (5) { ["raceId"]=> string(7) "1706057" ["races"]=> object(stdClass)#3 (1) { ["95049"]=>…
-
0
votes1
answer71
viewsQ: Pass value from a function to value in Javascript input
I have an input where the person should enter the date of birth, when she type, automatically already calls a function that makes the calculation of age. After that I would like the age value to be…
javascriptasked Lucas Araujo 75 -
5
votes2
answers134
viewsQ: Comparison of array in php
I have a array of the kind array1(array(1,2,3,4,5), array(2,3,4,5,6)); and another of the kind array2(1,2,3,4,6); I need to compare array1 with array2 and pick the difference between them, but…
phpasked Lucas Araujo 75 -
0
votes3
answers36
viewsQ: Redirect when you have a page click event
I want to redirect from one page to another when the user makes a click on it, regardless of the place, however, I’m not getting $.onclick.(function() { window.location.href = "http://..."; });…
javascriptasked Lucas Araujo 75 -
1
votes1
answer49
viewsQ: Load script every X seconds
I have an Odometer in JS that is powered by a notepad, so I needed to load the load.txt every 5 seconds or so... I tried to use setTime() but it didn’t work very well! Here’s the part I’d like to…
javascriptasked Lucas Araujo 75 -
0
votes0
answers26
viewsQ: Send Header from another domain in php
Guys, I have a partner site, which would need to send your information to the customer’s browser as soon as the customer accesses my site, I do it currently with iframe and pixel, but it would be…