Hot answers tagged javascript
11
In earlier versions of EcmaScript you could not directly access the prototype of objects; the prototype property existed only on functions, and it comes into play when they are used as constructors. So you could do this:
// This is the myObj constuctor
function myObj() {
this.a = "This is a";
this.b = "This is b";
}
// Setting a property on the ...
10
You could detect whether JS is enabled (a few things come to mind like Modernizr, or simple <noscript> tags would probably do the trick... then add some additional CSS to show it again. It's only a quick and dirty answer, but it should do the trick:
<noscript>
<style type="text/css">
#yourimage { display: block; }
...
9
Propagation issues. Change:
$('#myPage').on('click', '.selectedField .cancel', function () {
to
$('#myPage').on('click', '.selectedField .cancel', function (e) {
e.stopPropagation();
jsFiddle example
The click on the cancel bubbles up and triggers the click event on the parent. Kill it with fire.
9
You can't pass a default argument value in standard javascript today, this is invalid in Chrome :
function delete_image(button, data = false){
What you should do is
function delete_image(button, data){
if (data == undefined) data=false;
The MDN precises in what browsers you can use this feature (answer : only Firefox).
This should be available ...
8
Variables and functions declared in the current lexical scope cannot be accessed by name using [] syntax - only property keys (per your second example) can be looked up dynamically based on the contents of another variable.
The only way around this is to resort to eval, which is almost never a good idea.
An exception applies for variables and functions ...
6
First you need to make sure that Backbone is loaded properly --
The order should be
---> jQuery
---> underscore
---> backbone
Next need to create a new instance of the collection
You cannot operate directly on the Model or Collection before creating an instance of it.
(function ($) {
var Student = Backbone.Model.extend({ // ...
6
Because old IE versions are a horrible abomination that use a global variable event instead of a function argument like any sane developer would use.
For the same reason (oldIE developers being insane) you cannot use .addEventListener() in oldIE but have to use .attachEvent() instead.
Edit: Just saw that you are using an inline event and always pass the ...
6
You are using smart quotes (“ ”), which Javascript will not recognize. Use normal quotes (" ") instead.
The smart quotes may be because you are using a text editor that does this automatically. You should use a plaintext editor (like Notepad for Windows or TextEdit for a Mac), or use an IDE.
Here is a JSFiddle
5
Use an anonymous function and manually call both:
$(document).ready(function () {
app.start();
neato.go();
});
If you need to have the value of this be document in those functions, then use .call(this) instead of (). And if you need to pass the arguments from the handler, use .call(this, arguments).
5
var newRow = jQuery('<tr><td><div align="center"><input type="checkbox" class="case" onclick="showhide(\'display\',\'\')"/></div></td><td>' + daterecorded + '</td><td>' + arrivaltime + '</td><td>' + departuretime + '</td><td>9h 30min</td><td>' + ...
5
Well their own help docs are a good place to start - http://docs.highcharts.com/#home
Specifically the 'Your first chart' section - http://docs.highcharts.com/#your-first-chart
They've also done a dead tree version (a 'book' to most people) - http://www.packtpub.com/learning-highcharts-for-javascript-data-visualization/book
And just because you don't ...
5
You're function is infinitely recursive when there are >=9 filled inputs. On submit, the form performs validation, if the validation passes, you make another call to submit, which validates the form, and so on.
If you remove the form.submit(); and just return true the form will submit correctly.
5
Use " and escape it:
var status = "<a href='javascript:window.open(\"atendimento.php\",\"hhchat\", ...
Although this is a perfect example why you should use unobtrusive JavaScript to bind events - http://en.wikipedia.org/wiki/Unobtrusive_JavaScript and you won't have this kind of problem.
5
Good question!
So! Your website crashes in IE, it's a painful problem I've had some times before. It's no fun, and don't expect a silver bullet solution, take comfort in that you're not the first one to experience this problem.
You can use visual studio to debug IE. Visual Studio lets you run specific script statements, use breakpoints and run specific ...
5
I don't think this functionality is built in, so you'll have to do it yourself:
$("#mane").on("click", ".one", function(event){
if ( !$(this).data('clicked') ) {
// do your stuff here, this .one element hasn't been clicked before
$(this).data('clicked', true);
}
});
4
You should either pass a string to the constructor for regexen, or use the regex literal syntax, but not both.
var bodyIDregex = /<body[^>]*id=["'](.*?)["']>/gi
or
var bodyIDregex = new RegExp("<body[^>]*id=[\"'](.*?)[\"']>","gi")
Update:
As you have correctly identified, the problem stems from the fact that the regex search ...
4
YUI and jQuery do it in different ways but for the same reason: to try to keep things working in case you loaded the library more than once.
jQuery provides jQuery.noconflict() which restores the jQuery and $ global variables to their previous value. So you can safely do this:
<script src="jquery-1.9.js"></script>
<script>/* use jQuery ...
4
I think you're looking for alerts. Bootstrap has ones that you find scattered everywhere on the web.
You'll have to set a cookie or something to hide it for good (ie if someone dismisses it and comes back later)
You could try something like this (using bootstrap alerts and the jquery cookie lib)...
$(document).ready(function(){
...
4
You only need to use parseInt once: When getting the value from a place where you have a string. After that it's a number and will stay a number (unless you convert it back to a string).
However, always specify the second argument of parseInt():
var number = parseInt($("#id").attr("number"), 10);
Otherwise it will use base 8 or 16 depending on the prefix ...
4
If the amount value is a string then adding it to an int will result in concatenated text.
Either run parseInt on the amount before adding or make sure you are passing in an int value for amount.
Update: Check for argument type before adding:
function add(amount) {
// number is 9
var number = parseInt( $("#id").attr("number"), 10 );
number = ...
4
You should use .call():
invoke(arr, Array.prototype.sort);
function invoke(arr, func) {
func.call(arr);
}
The first argument of Function.prototype.call() will behave as this in the target function.
4
You need an object for that, not an array:
var array = [{ id: 1, client: "Microsoft" },{ id: 2, client: "Microsoft" },{ id: 3, client: "Apple" }];
var group = {};
for (var i=0; i<array.length; i++) {
var client = array[i].client;
group[client] = group[client] || []; // create array for client if needed
group[client].push(array[i]);
}
...
4
a[href] is indeed the select for all a elements that have an href attribute (whatever its value). .click will only bind to elements that exist in the DOM currently. If you want dynamically added anchors to be affected as well, use event delegation:
//or more specific container selector
$(document).on("click", "a[href]", doStuff);
4
The objects are not the same in the mind of JavaScript even if they contain the same elements. Each separately-created object is a unique storage container, and so == will return false.
You will need to compare each property of the two objects if you want to see if they contain the same properties.
4
If you really have just the input tag inside the td (and no other text, whitespace, or tags), you can simply use the following to get a reference to that element:
document.getElementById("c1s2a").firstChild;
To set its value:
document.getElementById("c1s2a").firstChild.value = 0;
There is also a property called firstElementChild, which ignores text ...
4
Possible Duplicate.
If you are allowed to use jquery, here is the answer you are looking for.
65 is ascii for 'A' and 97 for 'a' if you want to account for both.
$(function(){
$(document).keydown(function(objEvent) {
if (objEvent.ctrlKey) {
if ($(objEvent.target).not('input')){
if (objEvent.keyCode ...
4
Both bootstrap.js and bootstrap.min.js contain all plugins in a single file. you do not need the bootstrap-dropdown.js if you include bootstrap.min.js
From the bootstrap page
http://twitter.github.io/bootstrap/javascript.html
4
Below is the code you need.
<a id="gLink" href="http://google.com">click me</a><br />
<a onclick="disableLink()" href="#">Disable link</a><br />
<a onclick="enableLink()" href="#">Enable link</a>
javsacript functions:
function disableLink() {
var a = document.getElementById('gLink');
...
4
If you really don't want to use DOM functions (why ?) you might do
str = str.replace(/<[^>]*>/g, '')
You can use it if you're fairly confident you don't have a more complex HTML but it will fail in many cases, for example some nested tags, or > in an attribute. You might fix some of the problems with more complex regular expressions but they ...
4
I know you only want regex, for future viewers, here is a trivial solution using DOM methods.
var a = document.createElement("div");
a.innerHTML = 'testing <a href="url">anchor</a>';
var wordsOnly = a.textContent || a.innerText;
This will not fail on complicated use cases, allows nested tags and it's perfectly clear what's happening:
Hey ...
Only top voted, non community-wiki answers of a minimum length are eligible



