g div ( .html
(response) ). All the other browsers are not updating the contents of
the divs until all the responses are available (although i execute the
request with async=false), and then they update all the divs (ids
dev_1 to dev_7) at the same time... but for me it would be necessary
that the other browsers behave like Firefox 3.
Does anyone have an idea? I would really appreciate it :-)
Thanks!
Daniel
notice:
if i do an alert() with the response just before i update the content
of the div, everything works fine...
On Jul 22, 1:58 pm, Daniel wrote:
> Hi everybody!
>
> I want to update the contents of several divs periodically with the
> response i get from a php-script. the numbe
Is it possible in jCarousel to have circular autoscrolling? I tried
setting the circular scrolling example to autoscroll and it wouldn't
work. However, when I took all the content out of the container it
worked somehow. Is this a bug?
The only thing I changed in the example was:
jQuery(document).
Hi There,
I'm having trouble accessing some Elements with jQuery after I created
them and added them to the HTML. I want to add some Checkboxes to my
Site as soon as the user clicks another Checkbox. That works just
fine. But if the user clicks on one of these added checkboxes, i want
an event to
Hi mkmanning,
works like a charm, thanks a lot! :)
Daniel
On 2 Sep., 18:00, mkmanning wrote:
> Use .live()
>
> http://docs.jquery.com/Events/live#typefn
>
> On Sep 2, 1:51 am, Daniel wrote:
>
>
>
> > Hi There,
>
> > I'm having trouble accessi
$$.css('background-image').replace(/^url|[\(\)]/g, '');
should do the trick.
On Apr 24, 6:34 am, Mech7 wrote:
> What is the best way to get the background image url in css?
> i have found this in crossfade plugin but does not work in opera..
>
> var target = $$.css('backgroundImage').replace(/^
for loop might be the best way to
go. If you are trying to iterate through an array of unknown objects/
items, the each function is your way to go.
-Daniel
On Apr 24, 3:24 am, "Magnus O." wrote:
> Hi!
>
> I saw that the jQuery.each function iterates over the array like this:
>
A simple solution would be:
function forwardClick() {
var i = $('#images .visible').attr('id');
var currentImg = $('#images .foo:eq(' + i + ')');
var nextImg = $('#images .foo:eq(' + j + ')');
var curr
Hy guys, im new in jQuery ;)
My problem is the autocomplete plugin:
http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
It works very well and i'll find it much usefull, but i got a problem
with it..
Using the remote procedure (ajax requests), if the returning value
from the script i
Hy guys, im new in jQuery ;)
My problem is the autocomplete plugin:
http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
It works very well and i'll find it much usefull, but i got a problem
with it..
Using the remote procedure (ajax requests), if the returning value
from the script i
Hi guys, i just leanerd the existence of the ajaxSubmit jQuery plugin,
im wondering if there is a way to use the JSON both to send and
retrieve the requests.
I mean, no the plugin have the option 'dataType', that is used to
specify the format that the server will send back, but i need to send
the
So far I have tried:
$('a.classname').attr('href','/some_page')
and
$('#li_id').html('Details')
Thanks in advance.
Hi,
I am extremely new to jQuery and and wondered if someone might be able
to point me in the right direction. I want to add the LavaLamp plugin
to the Superfish menu module created for Joomla. It is located here:
http://users.tpg.com.au/j_birch/plugins/superfish/
The documentation on this site s
cant give you any example.
I suggest you to use the BlockUI plugin , so instead of just display
the Loading div , it blocks your interaction with the page until the
content is fully loaded. You can find it here http://malsup.com/jquery/block/
Daniel.
On Nov 18, 6:23 am, "[EMAIL PROTECTED
For my case , I get the user value from the field and add it as a
parameter into the remote's url . Sth like this : /
checkpass&user=userid
Daniel.
On Nov 17, 5:07 am, shapper <[EMAIL PROTECTED]> wrote:
> In this case I have only the validate request for the password field
>
Did you try to use the submit event ?
For example:
Javascript:
$(document).ready(function(){
$('#formLoad').submit(function(){
$('#south').html("Loading ...").load("test.html");
return false;
});
});
HTML:
Load content into this div
O
You can try jQuery.getScript(url, callback)
http://docs.jquery.com/Ajax/jQuery.getScript#urlcallback
On Nov 19, 4:25 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> I have an issue that I initially thought was a jQuery problem, but
> after simplifying things in preparation for posting my q
Maybe it's the really late night I had but I can't figure this one
out. First the html:
Internal Link
http://external.com";>External Link
Internal Link2
in order to do something on the page instead of going to the link I
need to filter it based on if it cont
Thanks for replying - as it turned out, in trying to go with what was
suggested I realised I was doing it all wrong! It's my fault for not
including the whole snippet I was working with (was trying to snip so
I didn't confuse the issue) and I would have normally worked it out if
it wasn't for the
name=q]').val(i);
$('#south').load("select.php?q="+$("input[name=q]").val());
});
});
html:
Load content into this div
Daniel.
On Nov 19, 5:53 am, anny <[EMAIL PROTECTED]> wrote:
> Hi ,
>
> I tried ajaxsu
quot; + responseText);
}
);
});
});
Daniel.
On Nov 20, 4:10 am, anny <[EMAIL PROTECTED]> wrote:
> Daniel,
>
> Thank you for the reponse.
>
> I tried this , but does not work. Firfox hangs at everyTime
> (1000,. Do i need to unclude any jquery files?
> right
I have just checked your new solution with setTimeout. It should
produce similar result if you change the ajaxForm to ajaxSubmit.
Daniel.
On Nov 20, 4:10 am, anny <[EMAIL PROTECTED]> wrote:
> Daniel,
>
> Thank you for the reponse.
>
> I tried this , but does not work. Firf
my firefox display it normally.
Can you indicate which part is not displayed correctly in firefox ?
Daniel.
On Nov 22, 5:46 am, Rene Veerman <[EMAIL PROTECTED]> wrote:
> This page displays fine in IE, opera and safari.
> But not in firefox :(
>
> http://tevlar.net/mytev
if($('#term').val() == ""){
alert("empty");
//do something
}else{
alert($('#term').val());
//do something
}
On Nov 22, 3:32 am, coughlinsmyalias <[EMAIL PROTECTED]> wrote:
> Hey,
>
> I have been trying to look for a simple way to validate one field, if
> its empty then do X, how would I c
Hi plee,
to disable all Sunday:
javascript:
$('#noSunday').datepicker({
beforeShowDay: noSunday,
showOn: "both",
buttonImage: "templates/images/calendar.gif",
buttonImageOnly: true
});
function noSunday(date){
var day = date.getDay();
dTo(element.parent()); // this line will
change depends on your form layout
}else{
error.appendTo(element.parent()); // this line will
change depends on your form layout
}
}
Daniel.
On Nov 24, 12:40 am, Cronet <[EMAIL PROTECTED]>
Tested your code. It worked in both Firefox 3 and IE7.
On Nov 23, 8:10 pm, Lorenzo Gil Sanchez
<[EMAIL PROTECTED]> wrote:
> Imagine this code:
>
> $("a").click(function () { alert("hello world"); return false; });
>
> $("button").click(function () { $("a").click(); });
>
> I would expect that cli
buttonImage:cal.gif',
buttonImageOnly: true
}));
});
Daniel
should be $(document).ajaxSend(function(){...})
Cheers,
Daniel.
On Dec 28, 3:14 am, "Lay András" wrote:
> Hello!
>
> On Sat, Dec 27, 2008 at 8:27 PM, Michael Geary wrote:
> > Well, that's odd that it didn't work. Try a single element by ID then:
I dont think there is a problem with your javascript code.
Did you try to set #load initial style to display:none ?
Cheers,
Daniel
On Dec 29, 5:33 pm, hcvitto wrote:
> come on..give me a christmas present ;)
>
> On 23 Dic, 09:51, hcvitto wrote:
>
> > i'm still here :) ...?
The page isnt loading correctly for me
On Dec 29, 4:44 pm, hcvitto wrote:
> http://www.tasker.it/img/demo/
>
> hi
> sorry for the long delay..i moved everything here
>
> http://www.tasker.it/img/demo/
>
> would you check now whether you can see it?
>
> On 23 Dic, 16:58, Mike Alsup wrote:
>
> >
yes it should. Do you have a test page ?
Cheers,
Daniel
On Dec 29, 8:47 pm, hcvitto wrote:
> hi daniel
> thanks for the replay..
> yes, it's initial state is hidden..As far as you know, should the
> ajaxStart/ajaxStop functions work with the "load" function too?
&
Hi,
i'm working on some bookmarklets / greasemonke scripts to
change some functionality in some websites.
i got some code like this
line 1 - aa
line 2 - bb
line 3 - cc
and i need to select all lines that contains "aa" and "cc"
does anybody have an idea how to do this?
When you click outside the password field, the field is still
not
Therefore, default value is '' , not
a quick fix to your code ( not tested )
$('.login_input').blur(function(){
if(this.value === '' && this.name === 'pass'){
$('.header_login_right_fake
What kind of validation are you using ? Are you using jquery Form
plugin ?
On Jan 7, 3:03 am, tawright915 wrote:
> I did not make my question clear and left out some things so here is
> goes again.
>
> I have two textboxes on my web form. When blank they are both
> required and are validated up
Sry , I mean Validation plugin
On Jan 7, 3:40 am, Daniel wrote:
> What kind of validation are you using ? Are you using jquery Form
> plugin ?
>
> On Jan 7, 3:03 am, tawright915 wrote:
>
> > I did not make my question clear and left out some things so here is
> > g
Hi, quick fix for compatibility with jQuery 1.3
1. Open jquery.fancybox.js file
2. Replace line 73:
Before:
var arr = $("a...@rel=" + el.rel + "]").get();
After:
var arr = $("a[rel=" + el.rel + "]").get();
Bye.
On 22 Led, 16:13, Gordon wrote:
> Sorry for the double posting! Google groups see
What exactly is it that you are looking for as far as a replacement?
JQuery works great with the box. If you are looking for
something visually different, more so than CSS can take care of, you
can check out this one: http://www.brainfault.com/demo/selectbox/, if
there is something more you are l
I'm going nuts here, and I think i've been staring at this far too
long. I have done more than one of these in my day, but for some
reason this just isn't working. I'm hoping a fresh set of genius eyes
can help me out here.
Everything has been checked for validation and so on. Doesn't work in
IE
Wonderful! I plan to use this on the redesign of
hodgesfarmequipment.com! Thank you, bookmarked!
On Feb 18, 2:41 pm, Will Kelly wrote:
> Hi
>
> Just released a plugin for some code I've been working on and off for
> the past few months.
>
> It's a simple content scroller that can accept images a
It is posting, but its not ajax posting. I've tried with and without
other inputs, and it still submits like a normal form. I'm losing my
mind over this one! Thanks for the quick response, Mike. Love the
plugin, and have used it more than once!
On Feb 18, 5:26 pm, Mike Alsup wrote:
> > Everythin
om.html
>
> On Feb 19, 1:13 am, Will Kelly wrote:
>
> > Great stuff, let me know how it goes! Will
>
> > On Feb 18, 11:06 pm, Daniel wrote:
>
> > > Wonderful! I plan to use this on the redesign of
> > > hodgesfarmequipment.com! Thank you, bo
I have multiple divs called article which have a show/hide link to
toggle a div inside called articleBody. Problem is when I click the
link all divs show/hide.
The html structure is below:
Hide [-]
This may be silly, but I notice you put "dataTipe" instead of
"dataType". If this is what your code looks like also, then there is
your problem right there...
On Apr 22, 4:56 am, Mario Soto wrote:
> The $.ajax function is causing me trouble, I'm using Mozilla Firefox
> 3.0.8 in a Kubuntu 8.10 c
try this...
$(".delete").hover(function(){
$(this).parent().css('background-
color','red');
}, function() {
$(this).parent().css('background-
color','white');
});
On Apr 22, 6:25 am, gostbuster wrote
var.parent().remove() should do the trick i think?
On Apr 22, 5:47 am, dth wrote:
> Hi,
>
> I have a jquery array with an element in it. I'd like to remove this
> element from the DOM, but can't see how.
>
> If I use var.remove() it removes all children but not the element
> itself.
>
> I cannot
I can't tell 100% from looking at the code...
but it seems like you don't need to have that code inside the "if"
statement.
putting the:
$('.exploitation_seat span.addIfEmpty').live('click', function(){
elementInQuestionParent.append(contentToInsert) ;
})
code anywhere in the $(document)
move my element as well as all of
> it's siblings?
>
> -dennis
>
> On 22 Apr., 13:36, Daniel wrote:
>
> > var.parent().remove() should do the trick i think?
I'm very glad!
On Apr 22, 6:38 am, gostbuster wrote:
> Thank you very much! it works !
>
> thanks a lot !
>
> On 22 avr, 13:31, Daniel wrote:
>
> > try this...
>
> > $(".delete").hover(function(){
> >
Wait. I'm sorry... the second half of my response was for a different
post relating to parent and parents. I have not tested that in the
wild. It should, however, not remove the siblings for the same
reason.
On Apr 22, 6:45 am, Daniel wrote:
> It shouldn't. there is parent() and p
I know this area of code was recently fixed for IE8 issues, but
something else is going wacky.
line 1065 and 1002
elem[ name ] = value;
change this to
try{elem[ name ] = value;} catch (err){};
and you're avoid errors being thrown in IE7 when a property is send an
invalid number.
something like...
$("#div").click(function() {
var ox = $(this).offset().left;
var oy = $(this).offset().top;
}
On Apr 22, 6:36 am, "David .Wu" wrote:
> If I got a 400px width div, can I get the offset left distance from
> mouse to the div in where I click?
t's returned as-is.
>
> > It would be a good idea to open the URL providing this data in your
> > browser and examine the data, perhaps pasting it intohttp://jsonlint.com
> > to see if it's valid or not.
>
> > On Apr 22, 7:28 am, Daniel wrote:
>
> > >
I am working with tablesorter plugin and pager plugin. I have written
code that looks for a class and decides whether or not to display the
row based on which checkboxes are selected.
Example: if i select the checkbox vehicles, the category id is 4, so
jquery looks in the table for any rows with
I am using jQuery show/hide functions on click, so when you click on
the contact link it hides that div and then shows a contact form. Once
you fill in the contact form and click submit it shows the thanks page
div.
I am using validation from here:
http://bassistance.de/jquery-plugins/jquery-plu
I am using jQuery show/hide functions on click, so when you click on
the contact link it hides that div and then shows a contact form. Once
you fill in the contact form and click submit it shows the thanks page
div.
I am using validation from here:
http://bassistance.de/jquery-plugins/jquery-plu
This is unfair, extJS IS NOT open source, pelase just read licence
carefully. http://extjs.com/license
anyway try this http://jquery.bassistance.de/api-browser/
good luck.
On Feb 22, 9:10 am, oscarml <[EMAIL PROTECTED]> wrote:
> HI, do you know if it planned to develop an API documentation pure
Hi
I've got some troubles with treeview:
http://reunion-industrial.es/reiphp/productos.php
First time it loads it Works perfectly, but when I click on one
subsubsubfamily and the page reloads, it seems the treeview loads all
the ítems at the same time. That is visible only a few ms but it makes
Hi Jan I have an example page set up at http://dsagency.eledesign.com/.
I am using two different controls to run the carousel.
1. The List of Articles above the carousel.
2. The next and previous buttons.
I would like to be able to set a class of current to the list of
articles so that no matte
addClass('reflect') is definitely running before the images are
loading - the hazards of living in an AJAX world. setTimeout is a step
in the right direction, but you really want to add you reflections
after the response.
There are a couple of options: the flickr plugin can accept a
callback: set
try
#gallery ul {list-style:none;}
#gallery li {display:inline;padding:2px;}
in your css.
On Aug 3, 9:21 am, b0bd0gz <[EMAIL PROTECTED]> wrote:
> Awesome that did the trick, the reflection is applied every time now
> :jumping:. Still having no luck in getting the thumbnails to display inline
>
ul#flickr {list-style:none;}
ul#flickr li {display:block;float:left;}
On Aug 4, 12:25 pm, b0bd0gz <[EMAIL PROTECTED]> wrote:
> Tried your suggestion but still no luck I'm afraid, it's still displaying one
> under the other :(
>
> --
> View this message in
> context:http://www.nabble.com/jquery.f
Hi, I was wondering if there happens to be an alternative to the
JQBrowser plugin, it does what I want which is platform detection,
not just browser detection although it breaks the jquery browser
namespace , therefore breaks too many plugins that user that, as it
overrides the property w
I reviewed the source and its much simpler than I thought, here is an
extension to jquery that works well, and obviouslly shouldnt break
other plugins
var userOSAgent = navigator.userAgent.toLowerCase();
// Figure out what browser is being used
jQuery.platform = {
mac: /mac/.test(use
Hi it seems everytime the heartbeat plugin runs , it refreshes the
current page and keeps calling the uiblock plugin
$(document).ready(function(){
$.jheartbeat.set({
url: "/index/heartbeat",
delay: 3000
});
$.blockUI.defaults.pageMessage =
my emails arent coming through
Interesting, im not getting the initial email, just the replies ! I'm
using gmail pop though.
On 05/09/2007, at 7:24 PM, Dylan Verheul wrote:
Yes they are :-)
On 9/5/07, Daniel Rossi <[EMAIL PROTECTED]> wrote:
my emails arent coming through
On 05/09/2007, at 9:06 PM, SeViR wrote:
Yes they are :-)
On 9/5/07, Daniel Rossi <[EMAIL PROTECTED]> wrote:
With GMail, your messages has not shown in the conversations. You
can use Thunderbird or another
email client ;-)
Gmail pop here, I use Mac Mail. Thunderbird is terribly
Hi ive noticed the each event only gets called once per page load in
safari. Is there any way around this. Is it a bug ?
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
ings, in firefox its the same it wont append the html
into the layer, i get the last function call though.
Even just
$('#media').prepend('test');
Will not show up.
On 19/09/2007, at 6:25 PM, Erik Beeson wrote:
How does your code relate to ajax? I'm not gettin
How does your code relate to ajax? I'm not getting it.
What's in 'info'?
--Erik
On 9/19/07, Daniel Rossi <[EMAIL PROTECTED]> wrote:
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 a
19/09/2007, at 6:25 PM, Erik Beeson wrote:
How does your code relate to ajax? I'm not getting it.
What's in 'info'?
--Erik
On 9/19/07, Daniel Rossi <[EMAIL PROTECTED]> wrote:
hi there seems to be a problem loading effects and jquery calls
after an
ajax call ha
Hi there is there any progress in this bug
http://dev.jquery.com/ticket/925
I believe this is a problem in the latest jquery version. The
quicktime wont remove itself after calling empty, it will play in the
background even though another player object has been added to the
elements html
Hi,
I need to put a rich text editor in a textarea.
Is there any way to do this with jQuery?
Thanks,
Daniel Bueno
Hi Mike,
Thanks for your help.
I'll test your sugestion.
Now I'm testing the HtmlBox plugin from
http://remiya.com/cms/projects/jquery-plugins/htmlbox/.
Thank you
*****
Daniel Ribeiro Bueno
Bacharel em Ciência da Computação
Desenvol
I'm using jQuery and jQueryUI. I'm new to jQuery, so any help much
appreciated...
I have an application where I am displaying a list from a database.
When the user hits a button, a modal form dialog comes up and they can
enter data.
It makes an ajax call to the server, gets the data, pop
Thanks.
On Jul 31, 2009, at 1:40 PM, Daniel Israel wrote:
I'm using jQuery and jQueryUI. I'm new to jQuery, so any help much
appreciated...
I have an application where I am displaying a list from a database.
When the user hits a button, a modal form dialog comes up and they
Hi All,
I am creating an form dialog that will be slightly different for
creating data than editing data. I'm pretty new to jquery, but I'm
using the jqueryui and it seems to be working fine, but now I'm
looking to change the labels of a couple of buttons and have one
button available du
I have this same issue too. Did you ever find a resolution? I've
started a thread on Stack Overflow as well:
http://stackoverflow.com/questions/1359713/using-jquery-the-onclick-event-and-adobe-air
On Jul 23, 11:24 am, DPeters65 wrote:
> I am stumped... have been banging my head for days on this
Hello
I am trying to specify range validation as an attribute in order to
have the validation rule as close as possible to the control. Trying
to avoid having to specify the rules somewhere else. I am using
jquery.validation 1.5.2
I have tried the following, but without luck:
I tried to do this
Put all rows inside the but in this case the
tablesorter don´t work more and crash the javascript..
:S
On Mon, May 11, 2009 at 3:29 PM, aquaone wrote:
> What is meant by this? I'm assuming that a sort is being performed that is
> forcing that row to move based on the conten
On Mon, May 11, 2009 at 3:56 PM, aquaone wrote:
> ... no.
>
> is the same level as and . it does not belong inside
> the . it should be a child of the .
>
> stephen
>
>
>
> On Mon, May 11, 2009 at 11:52, Daniel Queiroz wrote:
>
>> I tried to
reater than the new value of the *remaining* variable?
is it even possible?
Daniel
I've come across an issue where doing something along the lines of
$().ready(function(){
$("#selectbox").val("value");
});
Throws the following error in IE6
Could not set the Selected Property: Unspecified Error.
$("#selectbox") referrs to the following html.
Default
TEST
An
$(document).ready(function(){
and
$().ready(function()
are interchangeable. that's not what's throwing the error.
This line is:
$("#selectbox").val("value");
On Oct 13, 5:36 pm, James wrote:
> The line is:
>
> $(document).ready(function(){
>
the was a typo here. It's correct in the source code.
Ultimatately the issue wasn't with the Jquery, it was with how IE6
executes javascript faster than it renders dom elements, even when the
javascript is nested in a $(document).ready() function. Re-factoring
the code so that I'd create the o
I am trying to have a image (link button) appear within a div on
mousenter for the div, and disappear on mouseleave.
I have this working in the following code as expected, but I only want
it to apply to the specific div that is being entered/left.
The way I have it right now it applies to the clas
So I have a modal popup that is working fairly well, but I have some
issues in IE/FF (the only browsers I've tested in so far).
One thing is that the popup won't recenter if the browser is resized.
The other prob is a bit more difficult to replicate, but I've noticed
if my browser window is size
I have experimented with next(), siblings(), etc, but with no
luck...
Many thanks!
Daniel
Hi this wont empty the layer after a video plugin is inserted into
the layer using jquery.media
$(document).livequery(function(){
$(this)
.ready(function() {
$('.changeBitrate').change(function(event) {
$('#media').empty();
$('#media').media(attrs);
});
Hi there, Im not sure if im messages came through however Ive
narrowed down a bug with empty(), quicktime plugins in layers and
safari.
This same code registers as one child available but after removing
the video is still playing even though its removed and not visible.
while ( el.firstCh
ike windows media or else id be in deeper trouble.
Begin forwarded message:
From: Daniel Rossi <[EMAIL PROTECTED]>
Date: 17 October 2007 3:13:10 PM
To: jquery-en@googlegroups.com
Subject: bug with empty() , quicktime plugin and safari
Hi there, Im not sure if im messages came through how
I don't know if this is the correct forum for this type of request,
but it would be extremely helpful if jQuery could apply the hacked IE
css for position: fixed. I've been using the following in my
conditional IE stylesheet:
/* IE hacked CSS */
#topleft {
position: absolute;
top: expression(
c issue as I do? If
yes, which approach was taken?
Thanks in advance for your help and time.
daniEL
c issue as I do? If
yes, which approach was taken?
Thanks in advance for your help and time.
daniEL
Sorry for this double post.
On Dec 17, 6:54 pm, Daniel Keel <[EMAIL PROTECTED]> wrote:
> Hello, this is my first post.
>
> I'm working with jQuery since a month and I have one problem. The $
> (document).ready event doesn't work properly, manly I get the fouc in
>
OK. I put it on my test server. Right now does not happen because I'm
loading a stylesheet dynamically to fix the problem for the moment.
http://www.speculor.com/jquery/combi/
Hopefully someone can help me.
-daniEL
On Dec 18, 3:28 am, "Karl Rudd" <[EMAIL PROTECTED]
as I understand, the $(document).ready event means that the DOM
is ready but that the page is not rendered yet so that you can handle
your javascript before the user get the page rendered. Am I wrong?
-daniEL
On Dec 18, 3:28 am, "Karl Rudd" <[EMAIL PROTECTED]> wrote:
> It'd be he
I do all the JavaScript within $(document).ready and not in the
window.onload.
As far as I understand, the $(document).ready event is fired before
the HTML is rendered (DOMContentLoaded in FF). Is this correct or am I
mistaken?
-daniEL
On Dec 18, 8:47 pm, "Jeffrey Kretz" <[EM
1 - 100 of 135 matches
Mail list logo