Tagged Questions
0
votes
0answers
31 views
jQuery - reset dropdown on submit - Firefox and IE
Using jQuery & have multiple dropdown boxes on a web page & populate them from results returned from a SQL query. Each one is populated in the success portion of an AJAX call. One of the ...
0
votes
3answers
34 views
If making a jquery function callable on a selector, how do I retrieve the selector in my called function?
I'm trying to make a function callable on a jQuery selector.
Here is what I'm doing on my page:
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>first</title>
...
0
votes
1answer
34 views
window.width() doesn't work properly on lower screen resolution
I want to run a function if right side of a div is clicked, and another function if left side is clicked (div is horizontally centered inside html).
$("#div01").click(function (e) {
if (e.pageX ...
1
vote
2answers
46 views
How to use the function .toggle?
How to make a reversing animation with .animate?
I read in others places about the function .toggle, however when i used it, this function starts automatically without the "click". I want it (the ...
0
votes
2answers
22 views
Specific function to onblur of several elements
I have a function that checks the input and it works well.
function checkInputNumber() {
var
inputNumber = $(this).val(),
dotsCount = 0,
i;
for(i = 0; i < ...
-1
votes
0answers
20 views
jquery animating border effect [duplicate]
I have problem with jquery animation efects... I don't understand where is my mistake:
Here's the jquery code:
<script>
$(document).ready(function(){
$('.link').mouseover( function() {
...
3
votes
1answer
35 views
Get all variables of the current function() scope
I'm having a problem. I want to get the current function scrope. I have this example code that i'm working ok.
function nittle(){
var Pen = new Dot(); // Generated dynamical through eval()
...
0
votes
3answers
66 views
Function inside a function is not working
I am working on a responsive design and made a function for the menu to change when its smaller then 540px (meant for mobile). It does change but I cant click the button and my guess is that it is ...
0
votes
1answer
18 views
How do I allow users to enlarge or decrease the size of a html table?
Well Im working on a little sound board project and I added a thing to create the website more
dynamic
When you click increase/decrease it increases/descreases the text size in the buttons.
...
1
vote
4answers
53 views
Javascript vs jQuery Function Difference?
I've been making a program and I want to know the difference between starting two functions like so:
$(function () {
//content
});
and
function Name () {
//content
}
Also, why can't I ...
1
vote
2answers
20 views
Trouble with Jquery for each and $(this), I can't reference one element
I am currently having trouble jquery I'm trying to trigger an event where when the user clicks on the header of an article, the hidden paragraph snippet is displayed under it fades in, my problem is ...
0
votes
1answer
18 views
Calling jQuery function on page load with multiple elements
I'm working with Volusion and am trying to call a jQuery function on page load. I'm a little new to jQuery so please bear with me. Basically there are '.productnamecolor.colors_productname' items that ...
0
votes
4answers
47 views
Javascript module pattern : calling functions within nested function
I have code like that :
var SEVERINU = SEVERINU || {};
SEVERINU.AutoGallery = {
galleryImagesNames: new Array(),
findImages: function () {
var dirToResearch = this.galleryName;
...
3
votes
1answer
94 views
two functions on click in jquery
I have these two functions that i want to apply to the same click (i did have them both inside the click function with the same result... that the image toggle works every time but the show/hide ...
1
vote
1answer
45 views
Building form that can be reused everywhere in HTML code
First of all I am a beginner-level UI developer.
I have a form that I want to enable it several places in my code [it would be great if I can give this via js file so anyone can use it with few ...
0
votes
1answer
33 views
jquery Uncaught TypeError: Cannot read property 'options' of undefined (edited)
Hello I made a function for a simple drag and drop quiz. Everything works fine except for internet explorer ofcourse. In chrome console I get this error: Uncaught TypeError: Cannot read property ...
0
votes
0answers
29 views
Swipe.js getPos() and getNumSlides() help needed
I am currently using Swipe.js (https://github.com/bradbirdsall/Swipe/blob/master/README.md) for a carousel I am using for a website. I am a little new to this and could use some help. My code is below ...
0
votes
3answers
52 views
Cannot nest a Javascript function within a function
I have the following function setup:
function disableButtons(){
$('div.test').block({
message: '<h1>Processing</h1>',
css: { border: '3px solid #a00' }
});
...
0
votes
1answer
48 views
Jquery Logic - Can't efficiently achieve flag check
I am new to javascript but I am having a hard time creating code which can achieve this logic:
I am trying to achieve the following logic:
If a user enters text in location box and DOES click ...
0
votes
3answers
26 views
ui.draggable to show if confirmation is canceled.
I made a quick list, where each item can be moved to a trash can. I set it so once you track it onto the trash, it hides. If you hit ok to the "confirm", then it is fully removed with remove().
The ...
0
votes
1answer
33 views
Undo action if “cancel” is pressed in response to confirm()
I made a quick list, which you can drag to a trash can (which removes it).
Everything works when you press "ok", and the item gets removed as it is told to.
Although if you press "cancel" to the ...
0
votes
1answer
22 views
How can I reset a function implemented with a jquery media query
I have implemented a function on resizing browser window below 1024, it works fine when reducing the size of the browser but if you enlarge the browser window back to over 1024 the newly introduced ...
0
votes
2answers
40 views
How to take a value from one jQuery function and assign it to a parameter of another function?
I have a function with a jQuery slider. It sets up a delay time and shows it in the "#slider" div :
$(function () {
$("#slider").slider({
range: 'max',
min: 1,
max: 5,
...
0
votes
1answer
41 views
Jquery function doesn't wait result of Javascript function result why? [duplicate]
I have 2 method. second one calls the first one. When I put an alert function into the first one I can see the return value. But second function see the value as undefined. I couldnt understand why 2. ...
-4
votes
1answer
33 views
Internal Function not showing variables values correctly (JQuery) [closed]
I am have some trouble, I am not able to see the correct values of a variables I have created.
I am new to JQuery so please feel free to let me know which mistakes I am making.
Thanks for the help ...
0
votes
1answer
28 views
jQuery function to fade an image on window.scroll event not working
This should be really simple but I just can't figure out why it isn't working.
If the scroll top is within a certain region, then fade out an image. This works if scrolling with the mouse or using ...
0
votes
0answers
14 views
MatchMedia function works locally in my browser but when it's live it doesn't, why?
I'm completely stumped on this one. I am trying to make my website responsive and I am using MatchMedia to detect which function to call. One is a scroll function that is suppose to fire on desktops ...
0
votes
1answer
33 views
How do I use jQuery to fire different functions while using @media handheld?
I am trying to make my website responsive. My website is essentially all one page and I use a simple jQuery scroll function to navigate to different sections. It works fine for desktop or laptop ...
0
votes
0answers
10 views
jQuery help - calling a function / plugin
I'm trying to write a form with jQuery functionality that allows a visitor to login, resend their activation email or reset their password.
I've got it working but it's very cludgy and I wanted to ...
0
votes
3answers
53 views
JavaScript function problems
I can't get this to display an alert fed as a function argument. I have compared to examples and can't see the problem causing it not to work. I have included my html and JavaScript below, any help in ...
0
votes
1answer
58 views
Is there a NOT (window).scroll function in jQuery?
I'm trying to set up a function that stops working when the user scrolls, is there an oposite to the function below?
$(window).scroll(function() {
//while user is not scrolling do this
});
...
0
votes
4answers
50 views
Javascript: Combine function argument with string to reference var
I have vars that look like this:
var cardholder = $("#cardholder");
var cardholderInfo = $("#cardholder-Info");
And a function (which doesn't currently work) that looks like this:
function ...
0
votes
0answers
32 views
keypress event in a common function
I want to write a common jquery function which I want to call on different views in backbone router. In that common function I want to write a input text keypress event to remove the button's disabled ...
1
vote
1answer
52 views
JQuery equal heights on click for individual expanded text
I have a page set up nicely (JSFiddle) with a photo and expanding bio when you click the persons name (e.g. "Jane Doe"). I'm using an equal heights plugin to keeps the columns to match each other, ...
0
votes
6answers
45 views
Solved…Jquery/javascript function issue
I have a javascript function doing some animation and its parameter is a parent selector.
function myFunction(a)
{
$("'"+a+">#one'").stop(true, true).animate({left:'30px'},1100);
...
0
votes
1answer
156 views
Noty (notifier) is not working inside a function
I have a misterious problem with the noty plugin click. When I create a notifier as explained on the site everything works fine, but when I put the same statement into a function which is called at ...
1
vote
5answers
505 views
Call jquery function after ajax html get loaded
So i have this 2 jquery functions stored in a .js file and .js file is loaded before head tag
what is in .js file:
$(document).ready(function(){
$("#button1").click(function(){
$.ajax({
...
1
vote
2answers
98 views
Call a function from different file [closed]
There're two .js files included by this code
<script src="./js/get_values.js"></script>
<script src="./js/global.js"></script>
get_values.js:
function get_values(value) {
...
0
votes
2answers
661 views
Jquery Show/hide
I'm trying to make simple jquery code for show/hide function.
But still I'm doing something wrong.
$(document).ready(function(){
$('.arrow').click(function() {
$('#box').show("slow"); ...
2
votes
4answers
118 views
How to insert an unicode in jQuery?
I'm using a font with specified unicode. Instead of displaying the symbol it will only show the numbers or a broken image..
.attr('title', '');
Does anybody knows how to write this ...
0
votes
2answers
184 views
Javascript: Executing 2 functions after each other onmouseover event
I have a question regarding the jquery/javascript:
I'm in the following situation:
I have a link
It has a property onmouseover
When I hover it calls a default FirstFunction(), this function ...
2
votes
3answers
3k views
JQuery pass this to function
I need to send this to the capIn() and capOut() functions so that I can target the children divs of the correct .slide. How do I pass this to a function. this would be what is hovered.
...
1
vote
4answers
624 views
jQuery is returning undefined string from function in .each()
I'm trying to return a string from of function called 'tjekdet', but it won't return anything but undefined. I just need it to return the string, so I can append the result to $(this).
The reason for ...
11
votes
3answers
10k views
Jquery call function from a string
Is it possible to call a function by using the strings ?.
i.e i have a variable var target = 'next';. Using this string i want to call the jquery method next() . Should i use target + '()' (this is ...
13
votes
2answers
4k views
jquery - difference between $.functionName and $.fn.FunctionName
In jQuery, I have seen both the following ways of defining a jQuery function:
$.fn.CustomAlert = function() {
alert('boo!');
};
$.CustomAlert = function() {
alert('boo!');
};
I understand that ...
9
votes
5answers
29k views
Calling jQuery method from onClick attribute in HTML
I am relatively new to implementing JQuery throughout an entire system, and I am enjoying the opportunity.
I have come across one issue I would love to find the correct resolve for.
Here is a simple ...
8
votes
2answers
7k views
Jquery: Calling functions from different documents
I've got some Jquery functions that I keep in a "custom.js" file. On some pages, I need to pass PHP variables to the Jquery so some Jquery bits need to remain in the HTML documents. However, as I'm ...
3
votes
2answers
13k views
jquery $.function()
How can I write a plugin/function and then be able to call it like this(no selector required)?
$.function()
now I'm writing my plugins something like this:
(function($){
$.fn.extend({
...
36
votes
6answers
149k views
How to run a function in jquery
I'm a programming newbie, and I can't figure out how to store a function in JQuery and run in it multiple places.
I have:
$(function () {
$("div.class").click(function(){
//Doo something
...
27
votes
4answers
50k views
How do I write a jquery function that accepts a callback as a parameter
I Have the following function.
function ChangeDasPanel(controllerPath, postParams) {
$.post(controllerPath, postParams, function(returnValue) {
$('#DasSpace').hide("slide", { ...


