Hello,
I have a form with multi select field like so:
1
2
...
If I'm passing one value script works, but if I have multiple options,
it only gets me last in array.
jquery script working this out like:
$(document).ready(function()
{
$("#cats").blur(function(){
alert($(this).val()); //t
Adam-241 wrote:
>
> I'm working on getting what should be a simple rollover effect done in
> jquery, and it works like a charm in firefox and safari, but IE is not
> having any of it.
> ...
> the problem seems to be that the layered divs I'm using to capture the
> user's mouseover event are empt
Hi,
I have databse entries like: CUBE Streamer 'sloping'
ULTEGRA 3 x 10 (99€/Woche)
I use this text with jquery and I am writing this text into a div.
When reloading my page, because of a form validation, the text gets
automatically like this:
CUBE Streamer \'sloping\' ULTEGRA 3 x 10 (99€/Woche
Without seeing more code it's hard to know where you're falling down... Here
are a couple stabs for you:
1. Add a console.log('id: ' + c_chosen_id); and console.log('cat: ' +
cat_name); into the mix and see if that's working, maybe the variables
aren't always set properly... (Remember to remove th
Hi,
There could be a lot of reasons behind the inconsistent behaviour.
1.) Are these inputs being added to the DOM dynamically, i.e. at runtime ?
If so have you ensured that your updating the values at the right times ?
2.) Are the fields part of the form that you submit ? At all times ?
3.) Are
Hi,
I have a small script which should write me into input hidden fields
some values:
$('input[name="category_id"]').val(c_chosen_id);
$('input[name="category_name"]').val(cat_name);
My problem now is, that it seams, the value get's written, because I
can alert it, bit it's not getting written i
Hi,
When migrating to JQ 1.3.2, we seem to have found an issue with our
Google Web Optimizer (GWO) experiments.
there seems to be a race hazard of some kind before GWO redirects to
an alternate page version.
The error is along the lines of "document.body does not exist"... when
we roll back to J
Hi!
I'm creating a ajax call like this:
jQuery.ajax({ url: "http://urltopage/?callback=callbackhandler";,
dataType: "json", type: "GET", cache: true, callback: null, data:
null });
I then have a callbackhandler function like this:
function callbackhandler(data){
do something here
}
The respon
I'm working on a project that uses the load() function to grab data
from external files, but I keep getting a "405 Method Not Allowed"
error and the data won't load. I'm wondering if this is a problem
with the server or if it's a sloppy mistake on my part. Any help
would be greatly appreciated.
Hi there, I'm fumbling through here so I apologize in advance for
being such a newby to javascripts and jquery. I spent the entire day
yesterday getting jscrollpane to work on a site I've been working on
and was SO excited to see that it was working beautifully in firefox
this morning after some e
I`ve the follow code:
$(function() {
$("#datepicker").datepicker({minDate: '1/1/2009', maxDate:
'10/10/2010'});
});
In this ame page, I`ve this field:
I would get the date of field with name: date integrate with jquery
like this:
-
var hotdate = document.getElementById('date1').value;
Hi every:
I'm developing a web application in wich I use the latest release of
jQuery and jQuery UI. I have created my own theme using the tool provide
but jQuery UI Site. I have a problem with Accordion component. The first
h3 element of the accordion is align to right and the rest is OK
because
I'm having trouble setting the input focus when validating fields in a
form. I have a very simple case below, that validates a field for
white space. If it has white space, it triggers an alert and I'd like
the focus to stay in that field. However, when tabbing, it moves to
the next field regardle
Hi,
I´m using ajax(xml) to load one piece of php code, a template code
stored on the database(Latin1). I´m having problems with accentuation
when this piece of php code has accentuation.
I´ve tryed almost everything, but i had no sucess at all.
My code its like that:
js:
$.ajax({
url: '/
If I do something like, minDate: new Date(1930, 1-1, 14)
or, minDate: '-70Y'
The oldest date available will be 1999, and no matter what I've tried
I've never been able to get beyond this barrier. Is this a limitation
of datepicker?
Thank you,
~Joe
Please forgive my ignorance on the matter. I've only recently switched from
pHp and older JS conventions am not quite used to the varying syntax. Here
goes:
I am building out new forms for my company and am using jQuery for the form
validatin. The form has sets of hidden questions that will disp
And I'm using taconite too so possibly one for Mike ;-D
To summarise:
I'm calling blockUI and then running ajaxForm on my whole page form.
BlockUI is firing an overlay (with form field content) but only after
the form has been ajaxed. Because of this my fields aren't seen as in
the form and so su
Dear all,
Because IE behaves differently to FF I have to implement a ‘mother
function’ that only returns a value after an ajax call finished.
Basically this works fine in FF:
HTML:
Script:
$(document).ajaxStart(function() { $.blockUI({ message: 'hello',
overlayCSS: { backgroundColor: 'green
Hello,
I am trying to request the json feed from Google Latitude. This script
is working perfectly in Safari 4, but I get a 400 Bad Request error in
FF 3.5. If I add the &callback=? to the end of the URL, then FF 3.5
hits me with an Invalid Label error which I can't work around (tried
eval). Also
Hi guys,
I had a problem when I tried to use two Superfish menus. This problems
just occur when I use Internet Explorer 6.
Please, visit this URL to see the screenshot that explain everything.
My HTML doesn't have any special structure to cause this problem.
Can someone give me some idea about
$('.mainTable > tbody > tr').bind("mouseover", function(){
// alert('hi');
//$(this + ' > td').css('background', '#ff'); // Didn't work
$(this + ' td').css('background', '#ff'); // Doesn't either
});
I want to highlight td's in a row when I mouse over the TR's. I s
Hi.I want to get real-time statistics about users connected to server.
Server response contains JS-code - var online_users = 1234;
I wrote simple test page:
...
...
...
$(document).ready(function(){
$.getScript("http://server.url?roomname=alfa
i'm trying to submit the files to a target file that will work with
them
i have tried the iframe=true parameter but without success
please help, what i'm missing
//start scrpt
var counter = 0;
function prepareForm(formname)
{
var options = {
//target:'#ou
Hello mates!
I'm having a few problems using the animate() functions.
The following piece of code works perfectly fine:
$(document).ready(function(){
$('#aba').animate({width: '300px'}, 2000);
$('#content').animate({width: '454px'}, 2000);
$('#aba').animate({width: '30px'}, 2000);
$('#content').
Hi,
I am kind of successfully uploading files using ajaxForm/ajaxSubmit
and POST. My form has a file input (I am actually using
jquery.MultiFile.js) and some text inputs
e.g.
Fax:
Here is some code javascript (tried to fiddle with sent data ->
beforeSubmit - no success):
$('#frm_submit_btn
Hi Folks,
i have a big roblem with a little getJSON request. At first..this is my
code:
=== HTML ===
dicken ajax-request ausführen!
=== JavaScript ==
$(function(){
$("button").click(function(){
$.getJSON("myJson.js", myCallback);
function myCallback (jsonObje
Attached is my page code, I'm trying to make the corners rounded on
the div div#LoginArea - but try as I may I'm not able to work out why
this won't work - would be grateful for thought on what I've done
wrong...
<%@ Page Language="VB" AutoEventWireup="false"
CodeFile="DEV_Login.aspx.vb" Inherits
Hi,
I am having a problem with IE6 and the cycle plugin. In IE6 it shows a
black background over my div background image (I set via css a
background image to a master div). cleartype set to false,
cleartypeNoBg to true. I am cycling transparent png images. In IE7+
and Firefox everything is ok.
A
Hi,
I use the Form Plugin to store some user info in my database. When
inserting the data i have some troubles with special chars. Words like
Rëmkó will be converted to Rëmkó.
I submit the data to a file like this
$DB->query("INSERT INTO exp_members (screen_name) VALUES ('".$_POST
['name']."'
I ma having trouble with this for a few hours and thought id post to
see if i can get help.
I am trying to use ajax to load an element from another page. i can
see the response and the id element i am looking for inside but i can
get nothing but a null value trying to extract the html()
im using v
Hi all, i'm having a problem reading checked values from radio button:
i have two sets of radio buttons and i need to read the value linked
to each selected/checked button.
Googling for answers i found this snippet:
$("inp...@name='NAME']:checked").val()
but it only works if there's just one se
hi folks, if anyone could direct me in the right direction here I'd be
very happy
what's wrong here :
$( calculationsArray ).each(function(){
var index = $( calculationsArray ).index(this);
$( ".calculations_list" ).append( ""+ (index+1)+"")
.click( function(){
va
Hi there,
I'm working on a header that display a slideshow and at the same time
use the fadeTo() effect; the behavior of this header is as follow:
1) Once the page is load display slideshow 50% transparency and hide
navigation
2) When user hover header fade slideshow and navigation to 100%
3) Th
http://code.google.com/p/jquerytableresizer/
I am trying to use the jquerytableresizer but having some problems.
First of all the first column turns different attached is the image
http://www.nabble.com/file/p22426241/jquery-resizer.gif
and second inside the jquery tabs its behaving
Hi,
I'm having problems with componente .
I'm using the jQuery for cleaning his field, for example:
HTML:
jQuery Script:
$('#button').click(funtion(){
$('#fileName').val('');
});
In the Firefox it works, but in the IE7 don't works.
Someone can help me?
Regards
Thanks.
Hello!
I have some problems with my jquery!
When I select one option with accent in my combo, the ajax don't
work!.
The page is:
http://www.ibcperu.org/sicnabd/index2.php
Please, could you help me??
Thks!
Hi! i need some help with alphanumeric plugin. I have a couple of
inputs that i want to only permit numbers to be write there, so i´m
using this plugin, but the problem is that i can only prevent user
from enetering characters non numeric in the first input, but nothing
happens with the others...
Hi there,
I am having problems with the suckerFish menu
if i copy the code and let the font-size be 22px all is good:
bldd.nl/jsproblems/menuTest2.html
please rollover item3
but when i use a smaller font
bldd.nl/jsproblems/menuTest2.html
and you roll a couple of times over item3, i can't sele
Hello all,
I created a Kwicks style nav and I am trying to make each of the buttons
fade in a certain area of content.
Each of the buttons fades in their areas correctly, but after I hit one
button, it won't do anything when I hit another button after that. I'm
pretty sure it has something to d
Hi,
I have a situation where I have an image with a specific class. I need
to find the -tags surrounding this items class, but could not make
is, as I have different situations that are totally dynamic -
unfortunately.
and
caption
Anybody knows of a good idea on how to select the surrounding
Does anyone else find the new API browser to be a bit cumbersome?
My gripes:
1) No "back" link at top of vertical navigation list. You must click
the category to cancel your choice and essentially go back. However,
this isn't very intuitive and there aren't any affordances to this
behavior sa
I've been stumped on this one long enough that it's time for someone
to show me the obvious. I have a form where each element is a table
row. Interspersed between the rows with actual elements are rows with
help information for the element above them. When the focus is on an
element, I want to sho
I've been stumped on this one long enough that it's time for someone
to show me the obvious. I have a form where each element is a table
row. Interspersed between the rows with actual elements are rows with
help information for the element above them. When the focus is on an
element, I want to sho
Hello there!
I'm sending an AJAX request using jQuery that could take a minute to
complete. However, I also want to send other smaller ajax requests to
the same host at the same time just after the first one starts. The
problem is, the smaller requests block until the first one finishes.
Is there
Hi there,
I'm using Validate on my website, but i'm having difficulties with the
errorPlacement.
In simple a part of my form looks like this:
E-mail*
Validation works fine, but i can't get the message to display inside
'*'.
The following places the text immediatly before the
Hi there,
I'm using Validate on my website, but i'm having difficulties with the
errorPlacement.
In simple a part of my form looks like this:
E-mail*
Validation works fine, but i can't get the message to display inside
'*'.
The following places the text immediatly before the
Hi there,
I'm using Validate on my website, but i'm having difficulties with the
errorPlacement.
In simple a part of my form looks like this:
E-mail*
Validation works fine, but i can't get the message to display inside
'*'.
The following places the text immediatly before the
Can someone tell me why serialize returns nothing?
123
abc
456
xyz
http://ajax.googleapis.com/ajax/
libs/jquery/1.2.6/jquery.min.js">
http://ajax.googleapis.com/ajax/
libs/jqueryui/1.5.2/jquery-ui.js">
$('#sort').sortable({
cursor: 'move',
axis: 'y',
update:
I am having a slight problem with the multiple file upload plugin,
found here:
http://www.fyneworks.com/jquery/multiple-file-upload/#tab-Support
Here is my HTML form:
Your file
Choose an image to
upload:
my js is as follows:
var validator = $('#myForm').validate({
onfocusout: false,
onkeyup: false,
rules: {
prefix: { required: true },
name: { required: true }
Hi,
I'm trying do return a JSON with a $.ajax() method.
here is my entire function:
function carregaMes(d){
if(!(_reunioes["reg"+d.month+d.year])){
$.ajax({
url: "reunioes.jsp",
data: "mes="+d.month+"&ano="+d.year,
async: false,
forgot to mention that it's Jcarousel i'm about.
hi all,
installed the plugin and it works great of Safari but i seem to have
problems in firefox, it looks like it doesn't initialize the plugin..
u can see sample here http://new.yalla-ya.com/melinda-nicci/ .
i also dont get any errors at all in the console, don't see how it is
related but it's b
I wonder if anybody can give some advice on this. I am not too
experienced with asynchronous code. I am trying to load information
from other pages on our website onto the home page, for a "recent
projects" list. I want to be able to supply a simple list of names
corresponding to web pages and thi
Hi,
I'm having some problems with a plugin I'm developing. I'm using
'$(this).find('whatever')' to locate the relevant elements within the html
code, which works fine if just one instance of the plugin is initialised.
However, if multiple versions are called they start to conflict with each
othe
Hi I've just started using jquery and I'm developing a dynamic site so
I don't need the same code on every page and I'm loading various
different javascript files in based on the page, but nothings working
in IE but it works fine in firefox and safari. I have all the jquery
calls in functions bas
I have a form page here:
http://jimdavis.org/test/form1.php
and the page for the form post here:
http://jimdavis.org/test/comment.php
Data from the form is not getting written to the comment.php file.
At the moment comment.php is a completely empty file, no
, etc. Tried it with all the tags
Hi,
I'm having a few problems with the accordion plugin.
When the page loads it automatically adds the class 'selected' to all
my links. It shouldn't do this until I click on a link. Once you click
on a link the plugin works as it should do except for the arrow
buttons don't change.
Can someone
Hi,
I have a page which shows data for the next 5 weekdays. It has two
buttons which submit via JQuery AjaxSubmit to move the page back and
forward days. This works fine. However, the details for each day can
be collapsed via a button that is in the results for each day, i.e.
name1 [+]day
I have a menu with 3 items: Agradecimientos | Comentarios | Contacto
If I click one of these elements, a box may slide down, and show
content. And if the box is already down (if one of the items is
active), the box should firts slide up, replace the content with the
new one, and slide down.
So, t
Hello, I have tried this code:
$('#some_div').addClass('new_class');
And it works really well, it adds the class to the element. The
problem is that if this element had previously had any style applied
to it like:
#some_div {
color: #F00;
}
to change the color with the new class I'd have to
Hi guys,
After some laborious use of alerts, I've tracked down my bug in IE,
and it relates to $().jqm().
I think It's a live query style issue (I'm not actually using live
query!).
I have a function that attaches events to elements, and this is called
again when new elements are added via AJAX
On 18 abr, 19:48, JAT <[EMAIL PROTECTED]> wrote:
> [...]
> I've problems to select a certain element on code HTML generated by
> php.
> [...]
> ,[ HTML Code ]
> |
> |
> | [...]
> | {Article options linked with or tags}
> | [...]
> |
> |
Hi friends,
I've just discovering jQuery and it's a great library.
My Javascript's knowledge is not so good than I wish, I'm a newby in
this world.
I've problems to select a certain element on code HTML generated by
php. Following tutorials, api's and rest of very good docs I can't
resolve this
Hi friends,
I've just discovering jQuery and it's a great library.
My Javascript's knowledge is not so good than I wish, I'm a newby in
this world.
I've problems to select a certain element on code HTML generated by
php. Following tutorials, api's and rest of very good docs I can't
resolve this
Hi,
I'm relatively new to using JQuery so maybe making a newbie error bt
can't see where.
I've installed the JQuery Cycle Plugin on the homepage of a website
I've built and it works perfectly in Firefox, Safari, and IE7 but it
crashes IE6.
I have used this plugin before and it worked perfectly i
Hello all,
Since the morning I'm trying to complete this supposedly easy
migration but for some reason it gives me a migraine %-|. The first
problem I've encounter was "$ is not a function" when trying to call
(previously worked with jQuery 1.1.3) function (sample call: $
('#element_id').slideUp(
When I put the data of the form, it returns an XML if the information
does not pass the validation. If the data is correct the response type
is HTML. I'm using the Tickbox plugin to show this form.
The problem is that if the response type is XML, i can't to call the
success method of the Form plu
Hi,
I'm working on getting what should be a simple rollover effect done in
jquery, and it works like a charm in firefox and safari, but IE is not
having any of it.
the page in question is here: http://www.awayfromkeyboard.com/nymphomania/
here's the relevant code:
jQuery:
$(document).ready(fun
Hi,
I'm new to jQuery and I'm having some problems, so I turn to the pros.
I try to do an ajax submit, that for example erase an entry from a
database, all goes well, but when I use $
('#employees').load("empinc.php"); to reload the employees info, and
then try to use another .click event, to er
On most of my projects I have some js to push the footer to the bottom
on pages with little/no content (compares document height and viewport
height). When I upgraded to jQuery 1.2.2 it stopped working. It seems
like I'm getting unexpected results from $(document).height(). Am I
missing somethin
I've tried to build a table collapser yet I've problems with the
statements
$('#collapser_'+i+', .expanding').bind('click', collapser_collapse
(i));
$('#collapser_'+i+', .collapsing').bind('click', collapser_expand
(i));
To me they look correct yet Javascript stops working. The source is
Hi all,
I'm currently working on a static website using some javascript effects. So
far i'm very impressed by the possibilities offered by jQuery and that's why
i chose this framework, but now i have a little problem.
The web site i wanna create is very classic : a header, a footer, a
side-bar
I have a demo page here: http://www.iohelix.net/formbuilder/formtest.html
When you go to the page, add a few items (say 5 or so), and then try
to reorder them (by grabbing the blue bar), if you reorder from the
bottom up, and go below the containing div, the element you are moving
disappears and
Apologies if this issue has already been reported.
On the Jquery UI site, when I click on "See the Demos", then on the
Sortables, Selectables, or Slider demos, rather than any behavior in the
demos, I just get the following javascript exceptions:
array has no properties
http://dev.jquery.com/view
Hi all!
I am new using jQuery and I would like to ask you guys if somebody knows
how to solve my problem. I supose that is very simple, but I don't know
how to do it.
Here we go:
I am using tabs plugin to do a menu with three tabs. Inside of each tab
there is an accordeon menu.
When I load
Hello,
I want to use cluetip for displaying tooltips :) If I do it like that,
everything works fine:
[code]
JS:
// Tipps für die Hilfen auf Icons:
$('a.help').cluetip({
cluetipClass: 'jtip',
arrows: true,
dropShadow: false,
Hi,
I've set up a simple extension for an image rotator. It looks like
this:
jQuery.fn.imageRotate = function(delay,speed) {
// Converted s into ms
delay = delay * 1000;
// Get all child items of the list
var targetItems = $(this).c
I have been doing some dynamic things with accordion and have found
some areas that don't work. After some rather extensive debugging it
appears
that the problem lies in jQuery.
I'm doing some very dynamics things with the content that lives in the
accordion. The problems I've found seem to st
I am relatively new to jQuery and I need help getting jQuery to run
with a proxy server, more specifically to get jQuery to "see" the
page being forwarded to the client by my proxy server.
I have the following setup:
1) The proxy program is running on a file called proxy.php located
at
Hi!!!
I have a little problem with the animate in IE - 6 and IE -7...
I have a conteiner (inside of this conteiner I have some links) who
will be animated in onclick event. In FF it works fine, but on IEs,
the text inside didn't animate.
Anyone have a clue or a cheat to resolve this problem?
Than
Hi!
New to jQuery and have successfully managed to use the ajax
functionality from an HTML page. The problem is that I want to use it
from a JSP page. The JSP page is identical to the HTML page, but it
seems that jQuery stops working from the JSP page. At least all
JavaScript evaluation stops wor
Several JQuery APIs won't work with Firefox (2.0.0.7). Has someone
noticed the same problem? Is it a bug, an incompatibility or what?
The jQuery's Ajax Requests (and some other) API won't work with
Firefox (2.0.0.7) has someone noticed the same problem? Is it an
incompatibility, a bug or what?
Hi,
I'm pretty new to this ajax, but have been trying to get it to work
with ajax. What I'm trying to do is pass a value to a php script from
a link and return it.
So far, I can do that with the text of the link, but I can't seem to
get how to pass either the string, or the id value
Hi,
if I try to get the font size in the paragraph inside my .article,
all non IE browser return the right value (14px). IE (6 and 7) returns
me 630px, that is the width of my .
It's a bug o I miss something?
alert($(".article p").css("font-size"));
Thanks in advance,
-Maurizio
Hello!
I'm trying to learn jQuery so I can use ajax much easier than writing
ordinary javascripts. But it isn't working for me. Tried soo many
different (and Very easy) things and they won't work. Can someone
explain what I am doing wrong?
This is just a little testpage.
custom.js:
--
hi there seems to be a problem loading effects and jquery calls after
an ajax call has loaded content, this will not work after an ajax
call, the html doesnt get prepended etc
$('' + info + '')
.prependTo( $(container) )
.fadeIn(this.defaults.fadeIn
Hey guys.
My job is to make the interface of a new browser-based game. (No, i'm
not some 14 year old trying to make habbo ;)).
The game includes JQuery + SWFObject at each page, since they're both
used. Then, it uses a common script,
approximately 500 rules, for some common things.
Then, the la
I had a problem with a validation plugin in a form with some ul li fomatation
couze i´m using display: table and cia to emulate a table formation
Can anyone help me?
Razão Social:
Responsável:
Email:
--
[]´s Jean
www.suissa.info
E
Hello
I have some problems with the behaviour of IE 6, the code i wrote works ok
in Firefox.
I have an initial php that calls a load of another php file into a div when
dom is loaded. All Ok.
Inside this second php file, which is loaded in the div, i have more
I am having a bit of a problem with this function.
The code I have is:
$('.aDiv').css({ float: 'left', border: '1px dashed #ccc', margin:
'1px', padding: '10px' });
If I try to add any css property with a hyphen in it, such as text-
align or font-family,
$('.aDiv').width(40).height(40).css({ t
I have a little problem with tablesorter plugin
node has no properties
[Break on this error] return node.innerHTML;
line 147
Because mi table is inside another table (old layout) and this error aoccours
but in other page when i load by ajax and set the tablesorter this works
and the both have
I was making my defense for my university´s project and
I´m trying hide divs only to show when i click in some tab but if i
hide de divs with jcarousel it dont works, but the same code without
the hide divs works, i have 2 examples´s pages.
with hide
http://www.interalfa.com.br/sisdent/apresenta
This worked, but isnt now and i dont know why, someone could help me?
$('select').change(function() {alert($("select option:selected").val());});
--
[]´s Jean
www.suissa.info
Ethereal Agency
www.etherealagency.com
Someone has noticed it?
--
Massimiliano Marini - http://www.linuxtime.it/massimilianomarini/
"It's easier to invent the future than to predict it." -- Alan Kay
Thickbox in ie 6 cuts off the bottom of my page. I fixed it when it
does it when loading the page bu t when thickbox closes the bottom is
cut off. Here is an example
http://www.thebattalion.tv/dev/bios.php
Anyway to fix this. I was thing that when thickbox closes I could show
and hide a div on t
When i´m load a page some events dont work
like when i´m using tableFilter the css dont work, but in the page works great
when i´m using auto(filter) Hover for close images it´s dont hover,
but in the page works =/
Exist some special request to this works??
code from 1 load
$("#Listar").click(f
I have seven selectables on my page.
Only the first is reacting...
the code:
http://rafb.net/p/uYWmsK65.nln.html
Thanks,
Guilherme Utrabo
Hey everyone.
This is my test site: www.svplace.com/teste
the function to load content into a div is working well on Firefox,
but it doesn't on IE
This is the load function:
http://www.svplace.com/teste/load.js
I got this function from this site:
http://education.llnl.gov/jQuery/
which, by
1 - 100 of 104 matches
Mail list logo