0
votes
0answers
22 views

Adding variables with decimals

I have the following code that I'm using to add different variables to a "base price". The variables are coming from a separate dropdown menus and my issue is that in the dropdown some of the prices ...
3
votes
5answers
40 views

Isn't this a pointer functionality in javascript?

In one of my projects, I had to copy values of one array to another. When i tried doing it this way : var Arr1 = new Array(1,2,3,4,5,6,7,8,9,10); var Arr2 = Arr1; // will this create a ...
0
votes
4answers
59 views

Use php var in javascript file fault [duplicate]

I have a question about using a php variable in my javascript file. This is my index.php file: <body> <div class="container"> <div class="row"> <div ...
-1
votes
2answers
46 views

Jquery: Append HTML to a variable containing HTML

I have a var containing a bunch of HTML. I want to append a link to it before appending the var to a wrapper div,eg: var content = '~html generated from JSON~' $content.append.("<a ...
1
vote
1answer
33 views

Getting Details from one Dynamic Page to Another - Re-Post

After some wrestling with almost every line of code written for the JoomShopping component I beleive I have found what should be the answer to all my woes. When activating the "Buy" button in the ...
0
votes
2answers
47 views

$.ajax() jquery how to send multiple data values

This is an update of my code. Now I get the values in my update statement, but I still get a parse error. Maybe It has something to do with var update variabele. ...
-3
votes
3answers
52 views

What do plus signs on either side of a variable mean? [duplicate]

I once saw a long line of code inside an inline "onclick" and was wondering what the + signs mean on either side of the variables. Are they important? The example, watered-down code (if I remember ...
-2
votes
1answer
68 views

Javascript FOR loop, form input variables [closed]

I am having an issue with incrementing form names to be pulled into jscript variables. ($('#p'+i+'_status')) There are 10 of each status. For 1 input it should be $('#p1_status'), so I could simply ...
2
votes
2answers
73 views

jQuery Create variable name from each value in array

Take array (CritPath) and for each item in array; check table and split the columns into separate arrays (SysDate & SysTime). Return the (CritPath) name plus (SysTime) name to form new variable ...
0
votes
2answers
37 views

Form submit callback returning multiple times? And how to create a function for a null value in another function?

Sorry for the double question, I'm encountering a few issues as I try to crack this password change form. This is a follow on from my previous question here about submitting a form only if the 'if' ...
0
votes
2answers
37 views

Javascript declaration issue

//PROBLEM SOLVED// It turned out that the JQuery Ajax call couldn't reach the URL in certain browsers. Thanks anyway guys, for your quick responses, definitly helped to work it out. Sorry for the ...
1
vote
0answers
23 views

jQuery and custom events [closed]

I have this event that gets triggered from within a frame: window.top.$(window.top.document).trigger('object-selected',['Custom', 'Event']); In the parent window, I listen like so: ...
1
vote
2answers
48 views

javascript: use variable from one file in other

So, I am building a pretty complicated plugin and ran into a snag. (This is how I learn though, so snags are good...) My code looks similar to the following: Document 1 if( !window.TextEdit ){ var ...
0
votes
2answers
36 views

variable jquery inside twig template

I'm trying to use a jquery varaible inside a twig template to send by ajax, but I can't access to the jquery variable inside the twig: My code is: <script type="text/javascript"> ...
0
votes
3answers
66 views

jquery get href value and use it as a variable

So I have set up a scrolling code for my website. <section class="fpage"> <a class="next" href="#view">test</a> </section> <section ...
2
votes
5answers
58 views

Jquery check if both values are starting with same text

I jquery how to check two values starting with same texts, My code is $a = "Hello john"; $b = "Hello peter"; $a == $b --> False Like this how to find variables staring string.
1
vote
2answers
43 views

Accessing Object's Data Via Another Variable Name

It's super late and my mind is blanking right now, but let's say I have variable filename and it's storing the name of another variable marker. The variable marker is an array and contains the object ...
0
votes
2answers
45 views

jQuery how to use variables

The code below is working $(function () { $('.bigDiv input:checkbox').click(function () { alert('working'); }); }); But this one is not working var checkboxes = $('.bigDiv ...
1
vote
3answers
41 views

Use variables outside the function

Below I am getting the long/lat for an address with the google api. But the variables for longitude and latitube I need to use where gmap. is creating the map_canvas. How is it done to use these ...
0
votes
2answers
46 views

I want to get part of the class of a clicked element in jQuery

So, I have a function like this: $('a.tdt-btn-*').click(function() { var class = $(this + "[class^=tdt-btn-*]"); // Need more here console.log(class); }); What I ...
-4
votes
1answer
36 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
2answers
34 views

console.log(variable) is duplicating itself with multiple passes

First and foremost, this is literally my first semi-tiered menu I'm trying to make from scratch. If this code looks sloppy, please recommend any tips for minimizing it. TO THE POINT: Code works fine. ...
0
votes
1answer
24 views

How to set options using variables?

I want to set some options with a couple of variables, check below to see the final outcome I want it to be: $("#map").mapmarker({ center: "-37.788709,175.292750", }); I'm trying to achieve ...
-1
votes
0answers
39 views

Greasemonkey script insert value to form fail in some case

I struggle with a greasemonkeyscript to fill out some html form. I have trouble to get it work for dropdown selects where value is not int (Have cut down both script and html part) part of script: ...
0
votes
1answer
23 views

How to: jQuery do something, when all vars are true?

I got problems to solve the following jQuery "issue": The following code exits four times. When var blk_img1_ready, var blk_imgX_ready are 1/true I would like to perform a function. But only if they ...
1
vote
2answers
45 views

jQuery: Passing variables to function upon successful $.get request

Is it possible to pass predefined variables to functions called upon successful jQuery $.get request? As in the example below the PHP script would return "bar": var extra = "foo"; $.get(baar.php, ...
2
votes
2answers
58 views

Adding a variable to json query

I have this piece of code: [...] var apiURL = "http://.../api.php?format=json"; $.getJSON(apiURL, function(jsonData) { $('#tr<?php echo $itemId; ?>').text( $(jsonData)[0].query.pages. + ...
0
votes
3answers
76 views

jQuery not defined error in Chrome

Ok, sometimes the jQuery is defined and sometimes it is not. Here is the following jQuery code I am using on this page here: http://devs.dream-portal.net/dp11/index.php If it is defined, the ...
0
votes
1answer
55 views

Javascrip/JSON How do I use a variable in this function?

I've got this problem i can't solve. I want to make the part that says "aboutMe" a variable called page_name (after the parameter), but I can't get it working... $(document).ready(function(page_name) ...
-1
votes
0answers
74 views

Jquery doesn't find vars

for some reason my jquery code doenst find my vars. If i change hiddenImageWidth in jquery zoom. like this max: 650; Than he finds the 650 but the var is above the jQuery for some reason he cant find ...
-1
votes
2answers
52 views

How do I get setInterval to work with an array in javascript/jquery?

I want to run a function inside of a setInterval and change a variable for that function each time the setInterval runs, here is what I have so far: $pages = new Array(); ...
-1
votes
2answers
78 views

using jquery variable in php

I've got a dynamic table filled by a recordset from MYSQL. Each row has it's own delete button (image) to delete the specific row. This button has a class="button". I'm using a JQuery popup modal to ...
0
votes
1answer
32 views

How to get the values in a dynamic table?

I have a dynamic table as in here: http://jsfiddle.net/yvonnezoe/q524G/2/ . I would like to get 2 values from each row in the table. so i created 2 variables as fbType = $('td.nth(2)', ...
0
votes
2answers
47 views

passing tag id from php to javascript

Hie: i have managed to display multiple Divs using a foreach statement in php (the divs show different rows from a Database), and each of these Divs have a form at the bottom whose button evokes the ...
0
votes
1answer
74 views

How to pass namespace variable into click function param variable? jQuery

So I found an awesome solution to get around needing to use Global variables in jQuery here. Everywhere I say namespace, originally I was going to use a Global var. However I'm not able to send my ...
1
vote
1answer
28 views

Accessing global variable and asynchronous issue

Below is some code I've just started to work on (an avatar generator experiment). I want to be able to click on a button and change the position of the canvas element, but I'm having troubles with ...
0
votes
1answer
54 views

Javascript Closure variable access outside of function

I want to access variable linky below within a function for img#play. However, it is only taking on the last known value of linky, and I understand this is due to something called a Javascript ...
2
votes
3answers
67 views

two divs same class, get title only of THIS div

I thought this would be easy but I'm stuck and can't find a solution. I have two divs, both same class. The difference is the content inside each one. I'm trying to get the text and values from ...
0
votes
2answers
50 views

Pass Variable to .animate Step Function

Run into a wall while trying to pass a variable into my step function to handle some final cross browser fallback animation. I've built a general purpose animation method here: ...
0
votes
4answers
35 views

How to retrieve dynamically created html tag value in jQuery?

So I am able to create a tag name on the fly and add it to my html $('#'+modal_ID).attr('tag', roleName); Will create the following html div: <div class="modal simplemodal-data" id="modal-1" ...
0
votes
4answers
56 views

How to use a php variable id in a jquery function?

Below code works for value(B) in select#B but NOT for a variable($index) in select#index. Actually I need id to be a variable and want a jQuery function to operate on that variable. jquery function: ...
1
vote
3answers
116 views

How does a function use variables from another function?

I have a function addText(), which has 3 variables (textInput, type, rowID). I declared them without the var keyword (so that they can be used outside the function?). I have many checkboxes which I ...
2
votes
1answer
70 views

jquery variables not working

I have some code that makes the background color of a div fade. The code is currently working the way I want it to, but I would like to replace part of it with a variable so I can change which div(s) ...
1
vote
2answers
50 views

set variable value in another variable name

I want to take the id of a div and set that value at the end of a jquery variable name. For example if I click on a div with an id of "2", I want the function to create a variable called "var ...
0
votes
3answers
64 views

javascript global variable (with html template)

How can I create a global variable in javascript? I need to use an index value (it's incrementation value) on a field's id inside a "for", but the index keeps the "0" value on every loop. It's on a ...
0
votes
2answers
62 views

Construct jQuery selector out of multiple variables

I'm trying to make my jQuery code less repetitive by constructing a selector out of two variables. I would like to put the class 'legend' and the second classname in two separate variables and ...
0
votes
0answers
18 views

jquery YQL variable doesn't return value

Why does this not work for avgRent? The YQL console provides a value using this statement: select * from html where ...
0
votes
1answer
39 views

Increasing the maximum Ajax POST size

just want to know if it is possible to increase the size limit of a POST variable used with AJAX? In fact, I tried to insert in Database a long html code string, but it always cropped? A found several ...
-2
votes
2answers
147 views

passing html input value into jquery ui dialog ass variable

I have a html form with an autocomplete input field that open an jquery dialog. in this dialog i have an sql search that will need the value from the input box. How can i get the input in the Dialog ...
0
votes
3answers
58 views

Use JavaScript-Variable in jQuery

I´m having a normal JavaScript-function and want to use the Variable (myVar) also in my jQuery Code - is this possible? and how?: <a onclick="showtitle(abctitle);" href="#">Testlink</a> ...

1 2 3 4 5 25