Tagged Questions
JavaScript is a dynamically-typed language commonly used for client-side scripting. It is NOT the same as Java, and has hardly anything to do with it. Use this tag for questions regarding ECMAScript and its dialects/implementations (excluding ActionScript). If a framework or library, such as jQuery, ...
0
votes
0answers
3 views
MIPS: Print Register Value To Console
I'm trying to emulate the most basic form of javascript debugging in MIPS. What would be the equivalent of this ($t0 equals a javascript variable in this example):
console.log($t0);
In other ...
0
votes
0answers
9 views
store xquery result value in a jscript variable
Hello here is my problem:
I have a xml contained within a variable that is like this:
<channel>
<available>yes</available>
<label>CNN</label>
</channel>
...
0
votes
0answers
7 views
Rails application with pusher/faye
Iv'e been asked to make an app like this one: http://www.dealcent.com/
Im having trouble figuring out how to make the bids update, i think that i could use something like pusher or faye ...
0
votes
0answers
3 views
Trying to use enquire.js to deploy a specific script and getting errors
Okay I'm building a "responsive" website, and i have a few divs that have animated blocks over images. I have a simple javascript code like so:
$(function() {
$('ul.hover-block ...
0
votes
1answer
25 views
Displaying php code from mysql database
I am trying to use https://github.com/laukstein/ajax-seo for my website. Basically, it is a one page website that loads content from other pages without refreshing the page. ...
0
votes
0answers
9 views
Prevent mouse click - even plugins
I have tried various methods for disabling all mouse clicks for a streaming cam I have setup in a modal on a website. The stream uses the Silverlight plugin, which I'm sure is making this more ...
0
votes
0answers
13 views
Identifying What Javascript is Running on a <span> through Chrome Inspector or Firebug
I am working on a site that has info being generated dynamically into <span></span> tags through jQuery. The span has a class of "Price" and an id of a Product Code and it's being ...
1
vote
0answers
22 views
Reset hidden items from previous search
I am trying to implement search in Javascript for my application, and I'm running into an issue where items I previously hid will not show up again. JSFiddle
My code is here:
...
1
vote
0answers
17 views
Uncaught TypeError: Object [object Object] has no method 'wizard'
I have a limited knowledge of javascript and have thus far been able to create what I want.
I'm trying to implement Fuelux's wizard feature and have hit a brick wall. I am simply trying to achieve a ...
0
votes
0answers
7 views
Using D3 Drag on grouped elements
I'm trying to use the d3.behavior.drag function to drag & the text/shapes to a different position. Eventually, I wish to save the variables of the new position when it is moved from its original ...
0
votes
0answers
9 views
ko.observableArray and JSON data massaging
I'm using web services to load data to client side. For binding purposes I need to expand on data that I get. I.e. I don't want to massage all data on server side.
For example, object Trip { Id: ...
0
votes
0answers
14 views
What's a good text editor for Meteor.js?
I'm coding mostly in Javascript, HTML and CSS.
I installed the Sublime JsFormat Package. It does a lot of unnecessary highlighting. It doesn't really help me find an accidental missing curly braces ...
0
votes
0answers
28 views
Load HTML page into div
I have a problem with the following code on my website:
$(document).ready(function(){
$("#gallery").load("html/gallery/gallery.html");
}
When it runs in Chrome, it works great, but when I ...
0
votes
0answers
9 views
A library like BreezeJS that will work with Django and tastypie
I'm looking to integrate Django models into a SPA and would like to use a library like BreezeJS or JayData to manage my offline/online data on the client side. Both of those require OData. OData does ...
1
vote
1answer
5 views
Test for visible in QUnit test of JQueryUI widget
This may be obvious to everyone else but I didn't find it by searching, so posting both the question and one possible answer here.
Background:
Custom JQuery UI widget using widget factory
In the ...