4,155 reputation
22044
bio website noneyet.com/but/coming/soon
location Colombia
age 22
visits member for 2 years, 5 months
seen 6 hours ago
stats profile views 553

© JCOC611.

Juan Camilo Osorio

I Know: JavaScript, PHP, CSS, and HTML.

Always try to help, and then maybe I'll get help when I need it.

It’s all about uniting, the internet. We’ll live like one, connect to one. And that will be the start of something new. A piece of code, oh, and a beautiful ode!

PS: Beware, StackOverflow is ADDICTIVE.


1d
awarded  Popular Question
1d
comment REFRESHING with Buttons (start-stop)
I'll go as far as this: window.location.reload() and JavaScript intervals/timeouts
May
15
comment Java variable not used
Probably because you're setting it to a value but not using that value afterwards...
May
13
comment onchange is change in jQuery
Shorter event names = less bytes = faster loading
May
9
awarded  Notable Question
May
5
comment Disabling a page's focus-checking function using GM
This won't work mainly because the JavaScript you are trying to affect has already been executed. I have no idea what you're trying to accomplish but I would suggest you try to revert changes rather than prevent them.
May
3
comment How to animate DOM elements with JavaScript/CSS
And you can pretty much do any animation in JavaScript (unless it's 3D...that would get pretty complex)
Apr
28
awarded  css
Apr
16
answered jQuery selector: Select multiple ID and get their values
Apr
16
awarded  Famous Question
Apr
15
awarded  Popular Question
Apr
15
comment Constructor Issues in Java
Once you define a variable, you do not need to re-define its type (ex in double x = q;)
Apr
10
comment Does this Jquery plugin always return an array?
Have you tried logging coords in the console and seeing what its value is when there is no face recognized?
Apr
10
revised readonly attrib
deleted 216 characters in body
Apr
1
comment jquery css display block
You might want to consider setting the color of the submenu's text to white in order to see it and set the hover handler after document-ready $(function(){...})...it works.
Apr
1
comment Manipulating the correct <div> when there are two or more that have the same ID
That's what classes are for (Ex. <div id="first1" class="first"></div><div id="first2" class="first"></div>
Apr
1
reviewed Approve suggested edit on onclick function works but onsubmit doesn't
Mar
29
comment Console log not printing variable from function
@user1965121: Think of it as a sequence of steps. In your case, the console log occurs before the variable is returned. Additionally, for it to work, the variable you make reference to must be in the scope of the call. In other words, you would need to have something like newvar = strt() and you would make reference to this new variable rather than the initial one.
Mar
29
comment Centering a navigation bar with CSS
Courtesy jsFiddle
Mar
29
revised Centering a navigation bar with CSS
added 236 characters in body