To allow multiple selection the parameter name must be an array
1
2
Notice the array braces [] following the name parameter. Without them
the parameter can only hold one item at a time.
On the server side you'll need to process cats as an array:
$cats = array();
$cats = $_POST['cats'];
fore
Is the form validation on the server side? Is it done by PHP?
If 2x yes then turn off magic_quotes in your PHP configuration on your
server.
Why are you using both ".text()" and ".html()" ?
On Nov 19, 5:59 am, heohni
wrote:
> 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 valid
To be honest, I'm not entirely sure what's going on here. I'm trying
to figure out someone else's code, so I'm just going on a hunch about
what the problem might be. I have some data stored in an html file
that represents locations on a map. When the script tries to load the
file, I get a 405 m
I think that by default in IIS, .html filetypes will not accept POSTs.
load() in jQuery is GET by default but if you put something in the
data parameter, it will a be converted to a POST. Do you think that's
what's happening?
Unless your .html file has be configured to do server-side processing,
I
Thanks, I'll look into that. I had a feeling that it was a setup
issue, but I wasn't really sure yet. I'm just trying to load() an
html file, which is why this issue seems so strange.
On Oct 12, 7:45 pm, James wrote:
> Sorry, I meant VERB, not VERY:
>
> GET (and maybe POST) VERB
>
> On Oct 12,
That page is not using the Form plugin; it appears to be using Jörn's
Validation plugin. Also, I'm not seeing the problem you described.
When I check the box and submit the form the next page is loaded.
Mike
On Oct 13, 1:16 am, Laire wrote:
> Hello,
> I try to use the malsup form Plugin.
>
>
Sorry, I meant VERB, not VERY:
GET (and maybe POST) VERB
On Oct 12, 3:42 pm, James wrote:
> It sounds like a server setup issue. What is the file type/extension
> of the file that you're trying to load()? You have to set up the
> server so that the GET (and maybe POST) VERY is allowed for that
It sounds like a server setup issue. What is the file type/extension
of the file that you're trying to load()? You have to set up the
server so that the GET (and maybe POST) VERY is allowed for that file
type.
On Oct 12, 12:53 pm, Scogle wrote:
> I'm working on a project that uses the load() fun
Update. I figured out which area was causing the issues. Zeroed out
the margins on the main content area and used padding to place the
content where I wanted it. Worked like a charm.
Thanks again BaBna for headin' me in the right direction on this.
On Oct 7, 11:04 am, BaBna wrote:
> Hey there,
I forgot to include the link again, just so it's handy if anyone can
take a look: http://www.auntiepea.com/ew/OldFarm/index.html
Thanks so much BaBna. I think you're right about it not having
anything to do with the javascript itself. I probably should be asking
this in a general web design forum except for that I've never had
issues with this shifting (at least not nearly to this degree) on
sites that haven't included the
Hey there,
I don't think it has anything to do with the javascript here, it's
your CSS or HTML structure:
you've got DIV and P on the same level, and you must miss some float
or overflow property on some of your DIV.
Basically, your div with the "jScrollPaneContainer" class is not
pushed below by
I came to the same conclusion once I got it working, and found a
better way to alert the user. But, there are other occasions where I
need to set the focus from within a similar callback where it is
useful. So I'm still happy we discussed it.
Thanks!
On Sep 9, 10:33 pm, Mr Speaker wrote:
> I
I think they don't let you hold focus for a reason... I've tried it on
a couple of my forms and it's annoying! I wanna leave it blank and
come back to it damn it! ;)
On Sep 10, 2:27 pm, Mr Speaker wrote:
> It's like tabbing to the next field is NOT the default action - but
> something more intri
It's like tabbing to the next field is NOT the default action - but
something more intrinsic/unrelated. So even if you cancel the default
action, it doesn't stop the tab? weird.
I was also thinking that it would be a good idea to plugin-erise this
functionality, so if there's a better way to do i
Thanks! I knew about the validate stuff, it was kind of a quick and
dirty example. But I appreciate your bringing it all to my attention.
The jQuery docs for blus() say "the default action can be prevented
by returning false". Maybe it should be corrected.
Your suggestion of using setTimeout pr
I think the problem is that according to the W3C standards, the blur
event is not cancelable: They don't seem to want the programmer to be
able to mess with a blur...
But also, your validation code is a bit buggy anyway: the "ret"
variable is undefined and the regex you use will only catch the ca
hi joe,
You have to specify the "year range" according to your requirement .By
default it is
yearRange: '-10:+10'
Thanks
Rupak
On Wed, Sep 2, 2009 at 8:34 PM, hoe`` wrote:
>
> If I do something like, minDate: new Date(1930, 1-1, 14)
> or, minDate: '-70Y'
>
> The oldest date available will be
On Aug 20, 6:25 pm, coptang wrote:
:snip:
Apologies, was a PEBKAC issue in the end. As I was blocking the whole
page the blockUI overlay and message were placed outside of the form.
I've now switched to element blocking and blocked an element within my
form.
Hi,
I to was playing with the Google Latitude Badge API.
For some reason jQuery doesnt like it, so what i did was compare what
Google returns to what the Flickr example does
http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=any&format=json&jsoncallback=?
The flickr one is
It was the first i think about. I have tried to add random string to
URL No changes. :(
On Jun 29, 9:25 pm, James wrote:
> Probably the script is being cached. Try changing the url everytime
> the getScript function is called. This is commonly done by adding a
> time to the url's query string, l
*
*I would do it this way
td {
background-color:#FFF;
}
td.hover {
background-color:#AAA;
}
$(function() {
var tableColumn = $("td");
tableColumn.hover(function() {
// on mouse over
$(this).addClass("hover");
}, function() {
// on mouse leave
$(this).removeClass("hover");
});
});
*EXPLAN
(this) has to stand alone, you can't use it quite the same way as
parent child in your selector
most common way to do it is $("this").find("td").css(..); ///looks
for td's that are children of (this)
or there's an abbreviated method that isn't shown in many examples
$("td", this).css(
There are a few ways you could do this. Here are two:
$('> td', this).css('background', '#ff');
or
$(this).children('td').css('background', '#ff');
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Jun 29, 2009, at 3:58 PM, Coxy wrote:
$('.mainTab
Probably the script is being cached. Try changing the url everytime
the getScript function is called. This is commonly done by adding a
time to the url's query string, like:
Generate a new time with:
var t = new Date().getTime();
http://server.url?roomname=alfa&time=[add time here]
On Jun 27, 1
lol
On Thu, May 28, 2009 at 7:37 PM, GaVrA wrote:
>
> http://tinyurl.com/m33969
>
> On May 28, 7:35 pm, waseem sabjee wrote:
> > Just Curious. in standard JavaScript ( not using the JQuey Library )
> > How does animate actually work ?
> > and what makes it browser computable ?
> >
> > On Thu, M
http://tinyurl.com/m33969
On May 28, 7:35 pm, waseem sabjee wrote:
> Just Curious. in standard JavaScript ( not using the JQuey Library )
> How does animate actually work ?
> and what makes it browser computable ?
>
> On Thu, May 28, 2009 at 7:01 PM, GaVrA wrote:
>
> > no problemo :)
>
> > On M
Just Curious. in standard JavaScript ( not using the JQuey Library )
How does animate actually work ?
and what makes it browser computable ?
On Thu, May 28, 2009 at 7:01 PM, GaVrA wrote:
>
> no problemo :)
>
> On May 28, 6:56 pm, waseem sabjee wrote:
> > Thanks :)
> >
> > On Thu, May 28, 2009 a
no problemo :)
On May 28, 6:56 pm, waseem sabjee wrote:
> Thanks :)
>
> On Thu, May 28, 2009 at 3:41 PM, GaVrA wrote:
>
> > You need jqueryUi for this.
>
> >http://docs.jquery.com/UI/Effects/ColorAnimations
>
> > Try importing this:
>
> > http://ui.jquery.com/latest/ui/effects.core.js";>
>
Thanks :)
On Thu, May 28, 2009 at 3:41 PM, GaVrA wrote:
>
> You need jqueryUi for this.
>
> http://docs.jquery.com/UI/Effects/ColorAnimations
>
> Try importing this:
>
> http://ui.jquery.com/latest/ui/effects.core.js";>
>
> and see if your background will animate... ;)
>
> On May 28, 7:20 a
You need jqueryUi for this.
http://docs.jquery.com/UI/Effects/ColorAnimations
Try importing this:
http://ui.jquery.com/latest/ui/effects.core.js";>
and see if your background will animate... ;)
On May 28, 7:20 am, waseem sabjee wrote:
> The one problem I am havingis that this will refus
The one problem I am havingis that this will refuse t work
$("#myid").animate({
backgroundColor:"#CCC"
}, 600);
on the online jquery.com example it works. strangely it refuses for me
On Thu, May 28, 2009 at 4:50 AM, GaVrA wrote:
>
>$(function() {
>$('a).click(funct
$(function() {
$('a).click(function() {
$('#aba').animate({width: '300px'}, 2000);
$('#content').animate({width: '454px'}, 2000);
});
});
That would make #aba and #content animate when you click any an
Hi,
Thanks - I think that did the trick.
Christian
On May 19, 8:05 pm, Mike Alsup wrote:
> > This works fine as long as the user selects a file. The file plus the
> > text form elements are send to the server. Some intercepted traffic:
>
> > -7d92e142190a
> > Conten
> This works fine as long as the user selects a file. The file plus the
> text form elements are send to the server. Some intercepted traffic:
>
> -7d92e142190a
> Content-Disposition: form-data; name="UserId"
>
> 9bdfa5be-0608-4c14-92cd-defc92d64850
> -
This is exactly what I needed. Had no idea what was going on when the
slide mysteriously had a background color that matches a div three
levels up in the hierarchy. I guess there's no fix for the lack of
transparency with this attribute set?
On May 11, 1:37 pm, Maksym Melnyk wrote:
> Here's th
Thanks for your example. Now its working like it should :-D
> So here is finally my problem. I can just get numbers or bools of this JSON
> document. When i am trying to get a string e.g. nothing happens. No fanncy
> things, and no errors in my firebug console. I think its a problem with the
> each() function. I tried everything i could imagine till now.
It is my understanding that the pageLoad gets called when the aspx
page is loaded...
On May 13, 9:59 pm, Mike Alsup wrote:
> > 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
> 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...
>
> function pageLoad() {
> $("div#LoginArea").corn
Here's the solution from the Mike Alsup.
"Hi Shane,
There are two cleartype options in Cycle, and unfortunately one of
them is not documented (yet).
The general purpose of the cleartype logic in Cycle is to workaround a
rendering issue in IE when cleartype is enabled on the system. When a
Wind
That's what i thought ass well, i've checked my chartset of my script,
database and collation. All of them are utf-8. The form page ass well.
On 7 mei, 17:57, Giovanni Battista Lenoci wrote:
> Remko ha scritto:> Hi,
>
> > I use the Form Plugin to store some user info in my database. When
> >
Remko ha scritto:
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 ('
i am also trying jQuery("#jsc_leftbody", lt).html();
i cant for the life of me see why this is not working correct
if helps the page is here:
http://undergroundinnertainment.com/2009/index.php?option=com_comprofiler&task=userProfile&user=64&Itemid=67
On Apr 4, 2:13 am, Mathew wrote:
> I ma havi
On Apr 2, 6:37 pm, "Richard D. Worth" wrote:
> Change
>
> @name=
>
> to
>
> name=
Thanks!
Working perfectly now.
Marcello
Change
@name=
to
name=
The @attribute= syntax was deprecated in jQuery 1.2, removed in 1.3 (see
http://docs.jquery.com/Release:jQuery_1.3#Changes ) so your selector is
failing.
- Richard
On Thu, Apr 2, 2009 at 11:19 AM, echomrg wrote:
>
> Hi all, i'm having a problem reading checked values
Why don't you use this syntax so .each() would pass the current index for you...
$( calculationsArray ).each(function( INDEX ){
Read jQuery HowTo Resource - http://jquery-howto.blogspot.com
On Fri, Mar 20, 2009 at 5:29 PM, hybris77 wrote:
>
> hi folks, if anyone could direct me in the
IE allows users to type in the value in a file field, it's Firefox
that prevents that.
Also I think the syntax there may be wrong. I would use the name of
the file field and change it's value attribute to blank.
HTML:
jQuery (using 1.3.x)
$("#button").click(function(){
$("input[name='f
Hi,
Martijn Houtman
Thanks for help me.
I look for a other solution for my problem.
Thank you so much.
Bye.
On 6 mar, 10:29, Martijn Houtman wrote:
> On Mar 6, 2:24 pm, Renato Bezerra wrote:
>
> > $('#button').click(funtion(){
> > $('#fileName').val('');
>
> > });
>
> > In the Fir
On Mar 6, 2:24 pm, Renato Bezerra wrote:
> $('#button').click(funtion(){
> $('#fileName').val('');
>
> });
>
> In the Firefox it works, but in the IE7 don't works.
I believe this is a security issue, where the browser does not allow
you to set the value for a file input, because some mal
It has some old selectors. I just had to update it for a project
myself. There were just 4 lines that I changed, which got it to work
for my situation. There may be other issues for more complex trees; I
just had a two-level tree hierarchy.
- var branches = $("li[>ul]", this);
+ var b
Anyone ?
On Feb 27, 2:47 pm, Antivanity wrote:
> Having an issue when using treeview plugin with jq 1.3.2. I can get it
> to work in jq 1.2...
> Pretty much, from what i can tell, its not applying the classes to the
> ul and li tags. I think it has something to do with the way the
> selectors ar
I'm not sure if my previous response made it, trying to configure this
to work with my work email.
However, is there any way you can provide a code snippet of what you
are trying to fix here?
On Feb 9, 10:58 am, 123gotoandplay wrote:
> Hi there,
>
> I am having problems with the suckerFish menu
Hi,
is there any way you can provide a code sample of how you are using this?
Thanks
cheers
Michael Lawson
Content Tools Developer, Global Solutions, ibm.com
Phone: 1-919-517-1568 Tieline: 255-1568
E-mail: mjlaw...@us.ibm.com
'Examine my teachings critically, as a gold assayer would test
Thanks for the help!
Stephan - this solved it, sorry that I missed this basic one.
Klaus - yes, you´re of course right, just typed this to illustrate my
problem to make people to get the point. Thanks for your reply though.
Christoph
First of all, you need to fix your HTML. An anchor is an inline
element and may not contain div, p etc. This may give you unexpected
results cross-browser and scripting on top of an invalid DOM is not a
good idea to begin with.
--Klaus
On 19 Jan., 12:11, Christoph Neymeyr wrote:
> Hi,
>
> I ha
how about:
$(".thisClass").parents("a");
by(e)
Stephan
Remy Sharp ha scritto:
Ouch! Sorry about that.
I didn't have time to add functionality that saved the window position
- but when this is in (v. soon), I'll initialise the window at
640x480, then changing the window's position and size will be saved
for the next time it's opened.
Cheers,
Remy
Ouch! Sorry about that.
I didn't have time to add functionality that saved the window position
- but when this is in (v. soon), I'll initialise the window at
640x480, then changing the window's position and size will be saved
for the next time it's opened.
Cheers,
Remy.
On Jan 17, 11:08 am, G
@rem I've tried contacting you on twitter, but I'm new to it, and don't
know If you received my message.
I've installed the AIR api browser, and I love it, but when I open it
the dimensions of the windows are greater than my desktop resolution
(1280x800 on windows xp).
Here you can see a s
Well, i for one really love the new API interface _ such a much less
noisy interface than the docs.jquery.com interface! clearer, snappier.
it turns out i don't use the navigation menu much, i use the filter
box mostly. that's probably why i'm not so annoyed by its limits.
really liked the interfa
I think the animation of menus is one for the options as well then. I
understand what you mean, once you're familiar with it, you just want
to get on with it.
On Jan 15, 9:28 pm, Ricardo Tomasi wrote:
> Two things bother me more:
>
> - James' #3 point, that other categories hide when you click
Two things bother me more:
- James' #3 point, that other categories hide when you click one, an
accordion would be a better fit for quick navigation.
- the subcategories. I like to see the method's names directly,
deciding between "Hierarchy" or "Child filters" is not an intuitive
task. They shou
Hi James,
Thank you for your detailed feedback - all good points.
I want to push out another release when 1.3.1 goes live - so I'd like
to get some, if not all, of the feedback addressed (including others).
1 + 2) almost the same thing - the first problem I see is the AIR
browser, which obvious
I'd like to see the ability to post a link that goes directly to a
given summary page for a function makes it easier to direct
people to a certain area (say for instance, posting in this mailing
list)
On Jan 15, 11:43 am, Pappy wrote:
> My biggest issue with the new site is a lack of 'summa
My biggest issue with the new site is a lack of 'summary' screens. I
love being able to look at one page and take in all functions of a
various type. Especially when there are two that are awfully similar
and I can scan back and forth to differentiate between them.
On Jan 14, 8:22 pm, James Van
Figured this out myself, though I'm open to suggestions for a better
workaround. It's actually not the show() that's causing the problem;
it's the hide() that's called on the blur event. Details.
1. User clicks on input field.
2. livequery captures the focus event for that field and reveals the
h
I am having the same problem I think (apologies if I accidentally
posted twice). The standard jquery call seems to work fine. I
haven't broken this down into a simple page yet that I could try with
FireFox, but I will do that next. I'm in IE6&7
// This never calls my WebMethod...
$("#
Ah, i wasn't sure that you tried FF using Studio's web server, that
wasn't clear
Not sure what else to offer except that in studio, the web server (and
the application) "run as" your logged in account where IIS is not
doing so unless setup that way.. so i'd take a guess that it was
a fi
As i mentioned the Mozilla Firefox browser runs the page perfectly (i
have firebug too). But the exact same page does not work in IE 7 or IE
6 and when i say doesn't work it doesn't load the treeview using the
JSON data. A normal treeview does work. However on the same page as
this test i load the
How about using Firefox (and more importantly Firebug) from Studio
(right click on aspx file, choose "Browse With"), to make sure all
libraries are getting loaded
On Dec 18, 1:28 pm, paulcurtis wrote:
> Hi,
>
> I really can't work this out. Im testing the async version of
> treeview, just ret
On Dec 13, 11:05 am, George wrote:
> It has nothing to so with AJAX.
> You did not say what you using on your server side so i can not tell.
>
> But a lot of frameworks like ASP or ASP.NET will serialize requests
> made from the same Sesssion (browser). To avoid programmers having to
> manage con
It has nothing to so with AJAX.
You did not say what you using on your server side so i can not tell.
But a lot of frameworks like ASP or ASP.NET will serialize requests
made from the same Sesssion (browser). To avoid programmers having to
manage concurent access to resources in Session object.
On Dec 12, 5:07 pm, "Josh Nathanson" wrote:
> It looks like what you are doing there is called long polling, check this
> out:
>
> http://en.wikipedia.org/wiki/Comet_(programming)
>
> -- Josh
Ah, thanks for pointing me to that.
Unfortunately, it doesn't seem to work in jQuery. As far as I can
t
, 2008 3:18 PM
To: jQuery (English)
Subject: [jQuery] Re: Problems with more than one AJAX request at a time
On Dec 12, 1:02 pm, "Josh Nathanson" wrote:
> Yes, you should be able to fire the other requests. Maybe you could post
a
> little code.
Ah, thank you for your quick resp
On Dec 12, 1:02 pm, "Josh Nathanson" wrote:
> Yes, you should be able to fire the other requests. Maybe you could post a
> little code.
Ah, thank you for your quick response! Here's the relevant part of my
code:
http://paste2.org/p/114906
This is in the section of my page. What I'm trying to d
Yes, you should be able to fire the other requests. Maybe you could post a
little code.
-- Josh
-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
Behalf Of hotdog...@gmail.com
Sent: Friday, December 12, 2008 10:48 AM
To: jQuery (English)
Subject
That's not the case, could it have something to do with the
errorElement ?
On Dec 12, 10:46 am, "Jörn Zaefferer"
wrote:
> The label is probably set to display:block. You could overrid that
> with display:inline !important
>
> Jörn
>
> On Fri, Dec 12, 2008 at 10:23 AM, knal wrote:
>
> > Don't kn
The label is probably set to display:block. You could overrid that
with display:inline !important
Jörn
On Fri, Dec 12, 2008 at 10:23 AM, knal wrote:
>
> Don't know how, but apparently somehow the system got kind of excited
> posting my message...
>
> Anyway Jörn, thanks, i'm getting the message
Don't know how, but apparently somehow the system got kind of excited
posting my message...
Anyway Jörn, thanks, i'm getting the message in the right place now,
*but* for some reason it also
adds a break ( ) or something before the text, and that breaks
my layout. Is there any way to fix this?
Try this:
errorPlacement: function(error, element) {
error.appendTo(element.prev());
}
Jörn
On Thu, Dec 11, 2008 at 3:30 PM, knal wrote:
>
> Hi there,
>
> I'm using Validate on my website, but i'm having difficulties with the
> errorPlacement.
>
> In simple a part of my f
Who is the use of Gtalk?
2008/11/27 René <[EMAIL PROTECTED]>
>
> Yes, but additionally, the IDs need to have an underscore separator,
> for some reason.
>
> item_1
> a_1
> car_2
>
> etc.
>
> There needs to be an underscore between the first alpha character and
> the number.
>
> On Nov 26, 3:12 pm
Yes, but additionally, the IDs need to have an underscore separator,
for some reason.
item_1
a_1
car_2
etc.
There needs to be an underscore between the first alpha character and
the number.
On Nov 26, 3:12 pm, ajpiano <[EMAIL PROTECTED]> wrote:
> the ID attribute is not allowed to start with a
the ID attribute is not allowed to start with a number.
--adam
On Nov 26, 5:09 pm, René <[EMAIL PROTECTED]> wrote:
> OK, I figured out my problem.
>
> The items need to have an ID in the form of "item_1".
>
> On Nov 26, 2:07 pm, René <[EMAIL PROTECTED]> wrote:
>
> > Can someone tell me why seri
OK, I figured out my problem.
The items need to have an ID in the form of "item_1".
On Nov 26, 2:07 pm, René <[EMAIL PROTECTED]> wrote:
> Can someone tell me why serialize returns nothing?
>
>
> 123
> abc
> 456
> xyz
>
>
> http://ajax.googleapis.com/ajax/
> libs/jquery/1.2.6/jquery.min.j
Maybe you should first learn how to upload one file with PHP:
http://de2.php.net/manual/en/features.file-upload.php
and the the multiple way:
http://de2.php.net/manual/en/features.file-upload.multiple.php
Instead of $_POST use $_FILES
On 9 Nov., 23:32, dmackerman <[EMAIL PROTECTED]> wrote:
> I
> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
>
> Behalf Of Augusto TMW
> Sent: Wednesday, November 05, 2008 1:56 PM
> To: jQuery (English)
> Subject: [jQuery] Re: Problems with the JSON return from the jQuery.ajax()
> method
>
> Hi, thanks about yo
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Augusto TMW
Sent: Wednesday, November 05, 2008 1:56 PM
To: jQuery (English)
Subject: [jQuery] Re: Problems with the JSON return from the jQuery.ajax()
method
Hi, thanks about your answer.
This is a example of my JSON:
{"mes&quo
Hi, thanks about your answer.
This is a example of my JSON:
{"mes":{
"numero":"11",
"ano":"2008",
"reunioes": [
{
"dia":"27",
"horario":"15:50",
"local":"lorem ipsum",
Hi.
On Nov 4, 2008, at 10:48 PM, Augusto TMW wrote:
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.mont
Hi,
It does find only descendant elements. It's likely a fault in your
plugin code, without seeing it one can just guess.
Try using $('li',this), maybe you get lucky :)
- ricardo
On Oct 15, 9:46 am, less than zero <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm having some problems with a plugin I'm
On Tue, Sep 30, 2008 at 9:54 AM, andrew <[EMAIL PROTECTED]> wrote:
>
> Is there something special I have to do in IE to get jquery working
Nope, jQuery should work in IE6 out-of-the-box
> do I need to put all jquery calls within a
> 'jQuery(document).ready(function($) { ' at the top of the pag
Useful page. The example code didn't really work for some reason but I
took the theory and made it work!
Still unsure why the jQuery was playing up though - I pin-pointed that
it was the height of #main being reported incorrectly. I found the
options to include the margin - is this correct syntax
I was having similar problems today and it turned out I had blank
lines in my php script, before I had http://ie2.php.net/header has an example that uses on the line
before .
You can check the content type returned by hitting CTRL+I in Firefox,
though it will be pretty apparant if it is the cor
No solutions???
On Aug 17, 2:42 pm, Arun Kumar <[EMAIL PROTECTED]>
wrote:
> A small correction,
>
> If I set that header, it is not working in FF. If I remove that
> header, it is not working in IE 7.
>
> Than I added another parameter to my ajax request, dataType: "text/
> xml". This time, If I
> 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 i
Sorry, didn't see the link at first.
The selected-class is added to all links due to the navigation:true
being set. It matches the href-attribute of your links against the
current location, and as they all contain nothing but "#", they all
seem to match.
Try to remove the navigation option or se
Could you upload a testpage and post the URL here?
Jörn
On Sat, Jun 28, 2008 at 2:38 PM, kirstyburgoine
<[EMAIL PROTECTED]> wrote:
>
> 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
I have worked this out to being due to the items not being part of the
DOM when the page is loaded.
I am now using live query to get around this issue.
Sorry for posting before looking properly.
Adam
On Jun 26, 2:09 am, Adam <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have a page which shows data fo
1 - 100 of 224 matches
Mail list logo