No, they're definitely not equivalent in the general case.
The :even and :odd selectors apply to the even/odd elements in the
jQuery object. Depending on what has come earlier in the selector,
those elements may not even be related in any way.
In contrast, :nth-child(even) selects the even chil
hello,
I have a request to make two ajax calls (two different requests), but
the call back function for both the ajx calls is same.My requirement
here is, i do not want to trigger the second ajax call till the first
ajax call and it's success function are completely executed.
I short, i want to
How do I cache a particular page that has been loaded via Ajax GET
request. I want it to stop the GET request after it has been loaded
and simply show data onclick. I set the cache setting to 'true' and it
still calls the request. What am I doing wrong?
My Link
$(document).ready(function() {
a plethora of options! try these :)
http://snipplr.com/view/2123/suckerfish-dropdown-menus-jquerystyle/
http://www.kriesi.at/archives/create-a-multilevel-dropdown-menu-with-css-and-improve-it-via-jquery
http://jdsharp.us/jQuery/plugins/jdMenu/
2008/8/24 Sridhar Gowda <[EMAIL PROTECTED]>
>
> Hi Al
Mike, thanks for your cool post.
Last two hours I was doing just the same thing as you have suggested
and came to a few results with limitations:
- minified version of needed code without ready and sliding is 8k,
without sliding but with ready 16kb and 42kb with sliding.
Probably here is the bes
Hi there, anyone using the MultiFile plugin can drop me a line,
please?
How can I reset the form?
Thank you!!
Hi All,
I am new to jquery a learner. I was just going through the sites for
simple jquery menu. But everywhere i am finding accordion menu. I dont
need that. Can anyone please help me out with this? any code or link?
Thanks & Regards
Sridhar k n
> I'm new to the group and to JQuery, but am currently reading and
> writing a review of JQuery in Action. I have an interesting problem;
> I'm hoping someone can help me with it.
>
> I have a form that posts to a server. When the post executes, it
> always receives a redirect. What I want to do i
you should be able to .append a tfoot, then iterate through the tbody's trs
and tds to populate an array, then use that to populate some fresh td's in
the tfoot. i'd write it for ya but i gotta go to the opera. ^_^
stephen
On Sat, Aug 23, 2008 at 10:12 AM, Scott Phillips <[EMAIL PROTECTED]>wrote:
Hi Mike,
Thank you very very much for the much detailed explanation. I went over it
and actually got my quicksearch to work! :)
If there is anything I can do next time, please don't hesitate to ask.
All the best,
McBilly
On Sat, Aug 23, 2008 at 9:34 PM, mickes <[EMAIL PROTECTED]> wrote:
>
> Tr
If you just need a basic JSONP (with callback), you might want to remove the
Ajax library in its entirety and just use a basic JSONP function.
For the rest, I would get your app working, and then start going through the
jQuery code commenting out whatever you don't think you're using. Then test
y
Looks like you're using the "core" plugin only which only provides the
fade transition. If you want other transitions then you need to
either download the "all" version of the plugin or the transition
pack.
http://www.malsup.com/jquery/cycle/download.html
Mike
On Aug 23, 10:27 am, NYJC102 <[
"What's going on? "
If it's a Windows-type login you are getting hit with , then your
script, the actual js file, doesn't have proper permissions given to
the IIS user
It's definitely *possible*
but it would be highly suggested to make this total row on the
server's side
if you are dead intent on doing it client side, it would be something
like
$("#table tbody tr").each(function() {
// Your code adding the inner text values of the needed table
cells
}
Help needed !
On 22 août, 13:13, PanPan <[EMAIL PROTECTED]> wrote:
> Have you another idea ?!
>
> Thanks.
>
> On 21 août, 17:54, PanPan <[EMAIL PROTECTED]> wrote:
>
> > But it still doesn't work.
>
> > On 21 août, 13:59, "Jörn Zaefferer" <[EMAIL PROTECTED]>
> > wrote:
>
> > > That should've been
Are they equivalent to each other? Ignoring the fact that one is
counting from 0 and one from 1. This does not work (use the same CSS
class for subsequent rows):
$("#tableid tbody tr:even").addClass("even");
$("#tableid tbody tr:odd").addClass("odd");
But this does work:
$("#tableid tbody tr:nt
Well, in my case, I need JSON call not classic ajax. I know other
functionalities are simple in JS, but JSON call and sliding is a must.
Max file can be 5-10 kb from my calculations.
What about removing functions from jQuery library which I don't need
and have no effect on "engine" and needed fun
I'm new to the group and to JQuery, but am currently reading and
writing a review of JQuery in Action. I have an interesting problem;
I'm hoping someone can help me with it.
I have a form that posts to a server. When the post executes, it
always receives a redirect. What I want to do is capture t
Have you tried adding return false; ?
On Aug 13, 3:40 pm, cdawg <[EMAIL PROTECTED]> wrote:
> Hello Everyone,
>
> I am creating a .click() event for a TR, and then i show a row that is
> corresponding directly below it. The problem is that when the event
> fires, the browser jerks down as if the
> From: pedalpete
>
> Personally, I try not mixing jquery components with standard
> javascript (like your document.createElement), with the
> exception of within functions.
> Somebody else can probably comment on what is appropriate.
Well, all jQuery code *is* standard JavaScript. jQuery itse
You're almost there, you just need to throw in a quick setTimeout before
trying to write to the frame document. I ran into this some time ago when I
was doing the same thing.
Also, you can simplify the contentWindow thing a bit. Try this code:
$(function() {
var $frame = $('');
if there is no function within your
[code]
$(document).ready(function(){
});
[/code]
Then this shouldn't be.
Did you download directly via the jQuery site?
jQuery should sit quietly until you call a function, so somewhere the
password function is being called.
On Aug 23, 11:37 am, MBaas
You may want to look into Comet:
http://en.wikipedia.org/wiki/Comet_(programming)
http://cometdaily.com/
http://plugins.jquery.com/project/Comet
You can keep a connection open to the server so the client can be notified
by the server just as soon as possible, without having to continually poll
problem:
event.altKey is undefined.
environment:
Linux/ FF 3.0.1 / jQuery-1.2.6
remark:
when I am using older version (1.1.4) everything works fine.
The following markup along with firebug will be handy to capture it.
http://jqueryjs.googlecode.com/files/
jquery-1.2.6.js">
Hi folks, hoping for some knowledgeable assistance with this problem.
What I'm doing is dynamically creating an iframe in the DOM, then
trying to write some data into it. That's the part I'm stuck at.
I *am* able to create the iframe, no problem. I have a div with the id
#container built into th
It's nothing that fancy, try adding target="_parent" on the links,
which will target the parent window of Thickbox's iframe. That should
do the trick.
-Wick
http://www.CarComplaints.com
On Aug 22, 5:33 pm, DRoss <[EMAIL PROTECTED]> wrote:
> Doh2...the above code just refreshes the page.
>
> I n
I am trying to do a footer at the bottom of the table, and I would
love to use jquery to provide a total in the footer, something like
this:
1 | 1 | 3
2 | 1 | 4
--
2 | 2 | 7 (JQuery added the TDs above)
Is it possible? And can anyone point me in the right direction.
http://www.28prod.be/betac/
Here is the first version.
In short it's an anonymous live conversation.
Everything is in French. Click "CONNECTE-TOI" to log in. Type 'oui' in
the input box. Then click on "Cliquez ici pour choisir un nom" to
choose a fake name (top right). Finally use the orange tex
One of the functions of the website i'm building is a live chat.
The way I've implemented it so far is that every 2 seconds I send an
ajax request that will get the 15 most recent posts (even if there
weren't any posting during those last 2sec).
I find it really inefficient. Is there a way to upda
Try this:
Here is a sample of the section of my html document:
ASAP Summries 2-26-08 - Flight Options
$(document).ready(function () {
$('table#my_id_of_the_table tbody
TR').quicksearch({
Hi Group,
I'm having some slight difficulty with the jquery cycle plugin so I
figured I'd post in this thread...
For the most part, I was able to successfully get the cycle plugin to
work, but only in FADE mode! That's all fine and good, but I'd love to
figure out how to get the other fun transi
Here is a simple solution I've been using for a while and recently released
as a plugin:
http://www.fyneworks.com/jquery/xml-to-json/
But there's also a SOAP client plugin which seems to be a more robust
solution...*
*
2008/8/23 Arun Kumar <[EMAIL PROTECTED]>
>
> No solutions?
>
> On Aug 17, 2:12
you need to re-initialize the click handler if you replace the element it
was referring to.
On Fri, Aug 22, 2008 at 8:44 PM, SHiDi <[EMAIL PROTECTED]> wrote:
>
> Hi all.
>
> I've tried to reload a content using jQuery.post. However, it seems
> that once the content is reloaded, the script didn't
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
No solutions?
On Aug 17, 2:12 pm, Arun Kumar <[EMAIL PROTECTED]>
wrote:
> Have a look at the sample code given below:
>
> http://www.w3.org/
> TR/html4/strict.dtd">
>
>
>
> XML Parsing
>
>
> src="jQuery.js">
>
yep i've had this problem and came up with a solution, but it requires some
tweaking;
call the following code whenever the view is resized or focus is changed -
you'll have to hook the onblur handler of your input elements and set
__self.focussedElement to it; theres no DOM way that i found to do
Never mind. I found it. When setting a previously invisible form to
show Safari seems to show contained elements too - unless its
explicetly set hardcoded in HTML with a style attribute.
On Aug 23, 11:22 am, deckard <[EMAIL PROTECTED]>
wrote:
> Hi!
>
> Thank you very much - that already helped f
I found what I need.
I know that the Thickbox code has changed a little, but for those who
want to know how I did it, here is the code I use :
// loop through the anchors, looking for ourself, saving information
about previous and next image
for (var i = 0; i < imageGroup.
Ok, I solved my problem with thickbox 3.1 and jQuery 1.2.6!
Now it's faster than ever =)
My poblem was collision between prototype (+scriptaculos) framework
and jQuery 1.2.5 and 1.2.6.
Probably jQuery version of 1.2.4 has a better interface or
compatibility to other JS frameworks because I also tr
That helps a lot.
Thanks so much. Earlier, I had to use obtrusive Javascript, so not
cool. Now, no longer.
Once again, thanks a lot for your help. Topic can be close now :)
Cheers!
On Aug 23, 12:09 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> You have run into a fairly common issue: how to g
Thanks, all working fine now. Didn't even notice those docs.
On Aug 23, 1:41 am, Dave Methvin <[EMAIL PROTECTED]> wrote:
> > I can't get back to the home page. I have tried to solve it for a while
> > but can't seem to come up with a solution.
>
> The answer is in the jquery.history_remote.js doc
Hi all !
everything is in the title.
I would like to Add Next link and Prev link To the first and last
image of the thickbox plugin.
Any ideas would be helpfull !
Thanks a lot !
Gabriel
Hi!
Thank you very much - that already helped for the IE issue. This one
drove me crazy! It works now flawlessly in IE7 and FF3
In Safari however there is another issue.
The code is looping over all button elements in the html - I have two
buttons in my page . in Safari for the second button the
I've had to tweak jscrollpane aswell to get it to work properly (on resizing
a dialog).
Sometimes you have to nudge the DOM back to something that works with
jscrollpane.
On Fri, Aug 22, 2008 at 9:09 AM, Toccamonium <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> onclick we open the UI Dialog window for
did you initialize the script after loading it?
On Fri, Aug 22, 2008 at 8:06 PM, Aaron <[EMAIL PROTECTED]> wrote:
>
> Hi I just tried getting the plugin for jquery it's called cssPNGfix
> it's supposed to fix the problems with IE for tranparent png files.
>
> any suggestions how to get this to w
45 matches
Mail list logo