Posts by Lucas Nascimento • 63 points
3 posts
-
2
votes1
answer450
viewsA: Slider Range of jQuery
Whenever possible, put your complete code on Jsfiddle or another similar tool. So we can see the problem occurring and it becomes easier to evaluate. I made an example based on your code. If…
-
1
votes3
answers200
viewsA: Error picking element by class (but with ID)
EDIT: var video picking up only Class element. Get() method giving play on 2nd element with Class video stream. Your jQuery is correct. The error occurs because play() is not a function of jQuery,…
-
0
votes1
answer281
viewsA: Active menu after refresh with localStorage
When "set" the key value "activeDiv", the $(this). index('.menu-item > a') was always passing null. localStorage.setItem("activeDiv", $(this).index('.menu-item > a')); To check what value your…