JQuery :: Setting A Dynamic Variable?
Jul 19, 2009
I have found a script that works fine for me but I'd like to make it reusable but I have an issue with that. On the script I have something like
function my_function() {
var $container = $('#panel .container');
}
and I'd like to pass the id (panel in this case) as a parameter like
in the example below:
[Code]...
View 3 Replies
ADVERTISEMENT
Nov 18, 2011
The function will be
1.get the 70% width of the browser's screen.
2.convert that width into its corresponding px value
3.set the max width of the #mainContainer using the value got from the conversion/calculation.
Here is the css style for the container i want to set max-width with.
View 2 Replies
View Related
Aug 12, 2011
Code:I am having problems with the following. I am wanting to hide <tr> in my table (employees) and only show employees that are in the selected department (selected via dropdown box).I need to set a javascript array to a php array. I am looping and assigning the array and am wanting to pass a javascript variable as the index in php array. I have marked my problem lines in red. Thanx for any help.
<script type="text/javascript" >
function display_elements()
{
var departments = new Array;
[code]....
View 1 Replies
View Related
Aug 18, 2009
I'm trying set an option with a certain value to selected. I'm using this: $('#mySelect option[value="' + myValue + '"]').attr('selected', 'selected'); This has worked in another piece of code I wrote, but now IE 6 and 8 are throwing an error (in the debug bar). It's something similar to this: "The selected attribute couldn't be set. Unknown error." Anyone ever experienced something similar?
View 6 Replies
View Related
Jun 7, 2011
correcting the below sample code. I need to set the idvalue stored in a variablein $('#someId').val()
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
[code]....
View 3 Replies
View Related
Jul 20, 2005
I am working on something that only needs to work in IE, and I've got
this code:
var aRows=oTable.rows;
var oCell1_1=aRows(0).insertCell();
oCell1_1.innerHTML= 'new cell'
Which inserts a row in my table and I can populate the cell with the
text using the innerHTML property. No problem.
My question is, how do I set the VALIGN of this new cell?
I have tried this..
oCell1_1.valign='top'
and that does not generate a JavaScript error but it doesn't
vertically align the text in the cell either.
Other attempts generate javascript errors.
View 2 Replies
View Related
Aug 12, 2005
I'm trying to write a script with two standard drop down boxes. One
contains days one contains the month. I want to update the options in
the days box everytime the month is changed... i.e select August, and
days are filled up to 31, select September and only 30. The part where
I am having difficulty is that after the onChange event has triggered
and I have checked what the new month is, filling the box with relevant
values is tricky. Code:
View 9 Replies
View Related
Jun 4, 2009
I dynamically make a textarea and save the text, but when I try to output it with javascript, the newlines screw it up... if you don't understand what i mean, here is some code:
Code:
With that newline in javascript, the javascript throws an error. i am working in jsp, so how would i change the text that is put into the textarea with javascript without changing the newlines?
Here is how i try changing it:
Code:
But it doesnt change anything,
View 1 Replies
View Related
Jun 9, 2011
I tried this code but i got an error on the it said Syntax error code...
View 6 Replies
View Related
Mar 16, 2009
I have a content slider called "Codaslider" (ver 1.1 I believe) setup, and using CSS I have an absolute positioned image hovering above the slider at all times. The effect is what I want, where I have a static image of my company's product hovering above the content slider, and the background images slide around showing various features and such.
I would like to make it where the customer can click anywhere within the bounds of the content slider (including on top of the static image), and be able to follow the link for the image in the content slider.
For example, if the background image shows "New Features" or something similar, I want the customer to be able to click anywhere and get to the "New Features" page.
So basically, is there a way to dynamically set the URL that the static overlaid image points to, based on what page the content slider is on?
Here is the javascript that setups up the content slider:
Code javascript:
<script type="text/javascript">
var theInt = null;
var $crosslink, $navthumb;
[Code].....
View 3 Replies
View Related
Dec 1, 2010
a user goes to a page, selects a value from a select box then clicks a link to run a report using that hidden variable as a parameter. I am attempting to place the value in the URL to pass it. I'm sure the javascript is working, and maybe it's the HTML I've messed up - not sure.Here is the javascript (the alert does return the correct value):
function OnChangeDay() {
//assign the day id to the hidden variable $day
x=eval(document.getElementById("day_loc_id_select").value)
[code]....
And here is the HTML that should send the value, but I get day= (nothing)
<a href='/depts/edoptions/excel_extract.php?ex=2&day=<? echo $test_day ?>'>SLIP Data to Excel</a>
View 1 Replies
View Related
May 20, 2010
How can I dynamically specify a class value to use in a selector? For instance, I have a number, and I need to identify an element that ends with that number. In this case, there are four divs that have class values of
my_id_0
my_id_1
my_id_2
my_id_3
I have a 0 (obtained previously in the code) stored in the value tabId, so I want to get the values of the class attribute for <div id="my_id_0">. How do I create my selector? I tried
$("div# parent_element_id #my_id_" + tabId).attr("class");
but it comes back as undefined. Do I need to define it as a variable and put it in theelector that way? Or is there another way?
View 1 Replies
View Related
Apr 18, 2010
I have variables coming in from JSON files via AJAX calls. Each file will have 3 variables for different background colours. Depending on which button is clicked the background will change colour to the value specified in the JSON file.
[Code]...
View 1 Replies
View Related
Aug 16, 2011
I'm using some server side code to create a list of employees dynamically. In the HTML I have an "X" icon which will allow the admin to delete the user.I want to use the dialog box as a way to confirm or cancel the delete. If the user clicks the "X" icon I will run my server side code via $.ajax or something to remove the user.The only struggle I'm having is how to pass the row/id to the dialog box so the correct row is deleted from the database.
View 1 Replies
View Related
May 15, 2009
I have a bit of php that creates an entry on a page for each row in a table, some pages may have multiple entries, others just one.
eg.
<h2 class="title">{title}</h2>
{summary}
<p onclick="openBox({entry_id})">Click to read more ></p>
<div id="{entry_id}" style="display:hidden;">{body}</div>
I would like to have just one function to open and close all individually, eg.
$(document).ready(function(){
function openBox(id){
if ($("#id:first").is(":hidden")) {
[Code].....
Well I know I'm doing something wrong as this is not working, and I don't know how better to explain I hope this is sufficient, I'm not worrried about the php/html bit as that is working fine.
View 9 Replies
View Related
Jun 17, 2011
I have a google map which gives directions in different languages based on a select box selection. Google gives directions in English as a default, and if you make the selection AFTER the directions are displayed, then it changes languages. All good so far.
But if you make the language selection first, it still displays in English and then you have to select your option again. What I'd like is to say be able to choose "Italian" and for the directions to come up in Italian on the first hit.
My test page is here (http:[url]...) - you can click on "to here" or "from here" and enter "alyzia, greece" in the input box to see what I mean. I'll post the relevant bits of code below, too. locale is the variable the API uses for language selection.
var to_htmls = [];
var from_htmls = [];
var locale;[code]....
View 1 Replies
View Related
Jul 14, 2011
Whenever I try to compile a script I wrote, I get the error, "class, interface, or enum expected" and it points to a spot in my script that I don't think should create an error. code...
View 7 Replies
View Related
Dec 9, 2010
I have a variable:
var step = 5;
that is referenced by this function:
function animate(d) {
if (d>eol) {
return;
[code]....
and I would like for the user to have the option of setting that variable using radio buttons- say to 5, 7 or 10
View 13 Replies
View Related
May 21, 2010
I have the following that works just fine. If the div ID includes the string "targetDiv" then alert.
[Code]....
View 2 Replies
View Related
Aug 9, 2010
Have the Javascript function below which takes the name of an input on the form passed as a variable so that 1 function can check many inputs as I have up to 3 fields per form that can accept this data range.
function contact_number_check(formObj,field)
{
var obj = document.forms[formObj];
var regExp = /^([0-9 ])+$/;
alert(field);
[Code]...
View 1 Replies
View Related
Sep 21, 2009
I'm more of an actionscript person but got roped into an html/javascript job.What I need to do, and it shouldn't be that difficult is this:page1.html - there is a yellow button and a red button - if the user clicks on the yellow button I want to set a cookie with the value "yel" then load the next page - if they click the red button set that cookie with the value "red"page2.html - 'onload' i want to read that cookie and load up the main image to match, something like this maybe?... document.mainimage.src='img/main_' + variable + '.png'so that the path would be for example 'img/main_red.png'f you think this would be easier sending that variable in the URL instead of as a cookie please explain. I'm having a very hard time searching for tutorials that are any good and that do exactly this kind of thing.
View 4 Replies
View Related
Sep 15, 2011
Basically, i have a CSS/jQuery keyboard from NETTUTS; however my problem is trying to select multiple inputs. Everything works as it should, however i want to select the input, store it in hidden field (which input is current), then when i start to type, it can enter the characters into that input field (that is selected). Currently, it just allows me to enter inputs into a single textarea. I want to onfocus, set as "Focusedfield", and when i type it goes into that field.
Here is my JS code to select/store the "focusedField". Triggered by onFocus. to make the textArea i select, be the one i type into.
Code:
Here is the jQuery
The issue is with this first $write variable. I cannot for the life of me, get it to detect the dynamic variable. When i hardcode the inputs name, it works, but when i try something dynamic - it doesn't. Line 2 of that function is where my issue is (i believe).
Code:
I've tried to replace
Code:
With
Code:
And
Code:
As well as plain old JS var "current_form".
I think its just 1 or 2 lines where this issue is.
View 2 Replies
View Related
Sep 8, 2009
Ok...so here is what I have:
function myClass() {
this.checkLogin = function(name,pwd) {
if(name.length > 0 && pwd.length > 0) {[code]....
Everything works above. The first alert shows that this.status was set to 'error'. However, if I call myClass.getStatus(), I get undefined. How can I get the parseData function to set the variables in the parent function?
View 1 Replies
View Related
May 6, 2009
I have a dynamic jCarousel which pulls in JSON data from php, and prints out the list html. What I'm trying to do is set the carousel start item as a variable, which would find the item with the class ".active", and start with that item. The problem is that since the data is dynamic when it looks for the start item, the list hasn't yet been rendered, therefore doesn't find any class or list data. The code below works with a static list, but not dynamic. I think my options are (a) wait for carousel to load, then somehow set the "start" item after, or (b) after list loads auto-scroll to the item with class ".active".
Here's the code i'm working with for the dyamic list:
------------------------------
<script language="javascript">
$(document).ready(function() {
/* create an image slideshow from a JSON array using jcarousel */
[Code]....
View 1 Replies
View Related
Feb 16, 2011
I am trying to access a variable that is return from the "success" setting from an $.ajax call. I am not sure how to do this. I have attached the code below. Maybe there i a different way to get this variable?
[Code]...
View 1 Replies
View Related
Jul 23, 2005
I have a table that I populate with an array using ASP. As each row is created, the form object names are appended a numeric, such as:
i = 1
<select name="select<%=i%>">
...
...
...
i = i+1
next
I then pass "i" to a javascript function, so that I can access the values of each form object. I can't figure out how to properly concatenate the "i" and still allow access to the value in the form object. Currently I have:
var ps = 'platSymbol' + I;
alert(ps)
var sel = 'document.frmUpdPlatGrp.' + ps + '.value'
alert(sel)
I know I'm wrong, as this comes back as a complete string. Ultimately I want to have something like this:
var s = document.frmUpdPlatGrp.platSymbol2.value - so that I can actually get the value.
View 2 Replies
View Related