Tagged Questions
JavaScript is a dynamically-typed language commonly used for client-side scripting. Use this tag for questions regarding ECMAScript and its dialects/implementations (excluding ActionScript). Unless a tag for a framework/library is also included, a pure JavaScript answer is expected.
0
votes
0answers
5 views
video.js unable to read local videos
I've a little video.js player and i'm new to web devlopment.
I want it to read my local videos but i've a message:
"Sorry no compatible source and playback technology were found for this video."
But: ...
0
votes
1answer
17 views
Internet Explorer 10 back button caching
In Internet Explorer 10, if you press the back button it would try to fetch the previous page from the browser cache. This behavior differs from virtually every other browser including IE9 in which ...
0
votes
0answers
13 views
trying to solve problems to load tabs accordingly to tag values
I´ve posted here the final part of my head plus the body code generated in my application.
The idea is to load tabs or not and make them visible and enabled accordingly to values of tags of my c# ...
0
votes
1answer
30 views
Make all divs the height of the very first div
I am using this code
//Resize Div
$(document).ready(function(){
resizeDiv();
});
window.onresize = function(event) {
resizeDiv();
}
function resizeDiv() {
vpw = $(window).width();
...
1
vote
0answers
13 views
ajax validation for multiple forms on page, all have same class
basically i am making a CMS and want to have in post editing.
How it works atm is that the blog post is echoed out (PHP) and there is a hidden ckeditor which when an edit button is clicked gets ...
0
votes
0answers
7 views
ListView doesn't fire selectionchanged
My HTML:
<div id="listViewBoxOffice"
data-win-control="WinJS.UI.ListView"
data-win-options="{ itemTemplate: select('#movieThumbnailTpl'), selectionMode: 'single' }">
</div>
...
0
votes
0answers
5 views
How do I make the landing page for the about resource 'philosophy.hbs' instead of 'index.hbs' and still keep Ember's 'active' class?
My ember router looks like this:
Ew.Router.map ->
@.resource "about", ->
@.route "philosophy"
@.route "leadership"
@.route "staff"
@.route "affiliations"
@.route ...
0
votes
0answers
3 views
D3.js returning array as undefined
I'm trying to perform certain actions based on whether or not a JSON object has child objects. I'm using D3.js to visualize the objects, and would like to load a different Rails partial if the object ...
-1
votes
1answer
17 views
Creating a reference to a variable inside another property
I am passing the variable evtID which is inside the vars object, into click event inside the createEvent method. I have to reference it using cal.vars.evtID, I was wondering if there is anyway to pass ...
-1
votes
1answer
13 views
Stop effects when scrolling back to top
I've been trying to use this tutorial and been trying to stop the effects when scrolling back to top. I believe it's something that must be changed on the Javascript but really can't figure it out.
...
0
votes
0answers
5 views
How to access page variables from Chrome extension background script
With a content script you can inject a script tag into the DOM in order to access variables in the original page (as explained in this question).
I want to avoid injecting my code into every page and ...
0
votes
1answer
54 views
Javascript Array Search in Two Arrays
I have this two arrays.
url = ["http://www.linkedin.com/in/jannuelanarna", "http://www.linkedin.com/in/jannuela", undefined, undefined];
publicUrl = ["http://www.linkedin.com/in/jannuelanarna", ...
0
votes
1answer
8 views
Parallax with braking effect
I'm working for a client, he ask me for a parallax fx similar to this one:
http://hakim.se/experiments/html5/particledepth/02/#
When the mouse moves on x and y axis, the centered object moves in the ...
0
votes
0answers
18 views
Mac Chrome crashes sometimes when animate left jquery
Hi guys im currently developing this site:
It's almost done but im having some problems when you click the "Eventos" div , sometimes the animation is slow and sometimes it crashes i dont know why.
...
1
vote
1answer
12 views
li accordion style menu in one ul with multiple classes
I'm working on a website that uses ruby on rails to retrieve multiple links and place them into a single ul with multiple li elements of either class 'head' or class 'link'.
I am trying to get an ...