On May 23, 1:12 am, finneycanhelp wrote:
> Have you read the book "Pro JavaScript Techniques" Published December
> 2006?
No.
> Still good / applicable?
It is not on the recommended list at the comp.lang.javascript FAQ:
http://www.jibbering.com/faq/#books >
>
> (book image and links athttp
Well, at least, until I turn on Firebug, anyway.
This is very frustrating, when my sole tool for checking the validity
of my webpages is Firefox.
Roddy
Finally, when I load the HTML document up to the internet and try to
open it with Firefox, it behaves as it should.
Roddy
I have recently noticed that version 1.3 of the jQuery Tooltip Plug-in
does not work with jQuery's version 1.3.2. Is there a patch
available? Is there one on the way?
Roddy
I recently found the following fix for the failure code 0x80040111 on
the internet, but at a loss about where to place it.
http://bytes.com/groups/javascript/503355-how-fix-0x80040111-ns_error_not_available-error
The FUNCTIONAL FIX
function LoadContent(reqVar,loaderId,divId,url) {
if(re
Youhou ! A last one before going to bed :
I found the option 'disable/enable' and it was exactly what I was
looking for (for the "titled" state of the window).
But guess what ? I don't know how, but if you disable the resizable,
the cursor won't change when moving around the window borders, BUT t
Another thing...
When using the resizable plugin, and by using it I mean resizing the
window, it somehow creates bars around my window (some ui-resizable-
handle).
Why is it bad news ? Because when I perform a double click on the
window title, it hides the contents, limiting it as the title heigh
So, first:
html = '' +
($(this).find("titletext").text()) + '\n\n';
Create a variable with the code needed.
$("div").append($(html));
Then dump it to the div.
Order and logic you need to figure out, but thats an example of how to dump a
xml returned result into a file.
--- On Wed, 5/20/09,
A quick look in the jQuery source is always a good start:
hover: function(fnOver, fnOut) {
return this.mouseenter(fnOver).mouseleave(fnOut);
}
On May 22, 9:28 pm, Mattsson wrote:
> Hello, I'm very new to jQuery and trying out some of the tutorials.
> In this tutorial,htt
I forgot :
My example, using this pluggin, is :
[code]
SApplication.oContent.append('\
\
\
Hi all,
I am using the jquery-ui resizable plugin, but I encountered some
issues :
1) I had to add the ".ui-resizable" css for that plugin to work
(hopefully I found a website explaining that workaround)
2) there is no "scroll" option like in draggable (!?)
3) the containment option does not work
We've been using jQuery served by Google for almost a year, on a site
that gets about 5 million pageviews a month, with no problems. Is your
page using https by any chance?
On May 22, 3:58 pm, intrader wrote:
> I am having a problem when loading jSquey from the Google CDN as
> follows: ht
No, putting it locally will most likely slow down your application. The
browser limits the number of simultaneous fetches per hostname.
Additionally, retrieving from a centralized location used by other sites
increases the probability it will be cached by the browser.
http://developer.yahoo.com/pe
A second error message that occurs after much run-time has passed.
2ND ERROR MESSAGE
Exception... "Component returned failure code: 0x80040111
(NS_ERROR_NOT_AVAILABLE) [nsIChannel.contentType]" nsresult:
"0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame ::
file:///Applications/Firefox.ap
You need to quote the full key, eg "name['name']": "required". See
http://docs.jquery.com/Plugins/Validation#Fields_with_complex_names_.28brackets.2C_dots.29
Jörn
On Fri, May 22, 2009 at 10:15 PM, Bob O wrote:
>
> so as not to confuse..
>
> the name attribute looks like this
> name="name['name'
I'll bet there are 30 different answers for this based on how the data
is being delivered, processed. and how you are using "jQuery Library"-
plugins, methods, functions, event binding etc.
I just set up jQGrid with several thousand rows in database and am
amazed at how fast it works! There'
I am not as impressed with the documentation as you are. I find the
use of the English language weak in many places and often walk away
with only partial understanding that only falls into place much
later. This said, the organization of the jQuery website is nicely
done.
Roddy
On May 22, 11:
jQuery outperforms Prototype by leaps and bounds. Surely this is an
important reason for jQuery's increasingly popularity over Prototype.
Thanks for the great reference!
Roddy
On May 21, 1:02 pm, Jackson Ferreira de Andrade Mafra
wrote:
> http://blog.creonfx.com/examples/javascript/speed-compe
This article was also very useful, and I thank you for introducing me
to Google Trends. Surely jQuery is far more popular than either
Prototype or MooTools, and rising in popularity. MooTools, though not
particularly popular, appears to cater to a different audience and is
holding its own.
On M
The article that you provided is well written and revealed that jQuery
and MooTools are designed with very different goals in mind. I found
this article to be the most helpful. Indeed, one need not even choose
between them, as they offer very different things.
Roddy
On May 21, 2:49 pm, Josh Po
QUESTION: When the Firebug Script Debugger is enabled, and I open my
documents with Firefox, my Console opens to the following block of
code (see JAVASCRIPT below), my page fails to load, and an error
message is produced (see ERROR MESSAGE below). If I reload the page
with the Console still open
Hi There here is tip. instead of using the jquery library script from
another URL you should download it and possibly put it on your FTP ( if
online ) or filesystem ( if offline) that will really sped the scripts load
time up
secondly this is how I test for jquery
alert("this is a standard alert
yes.
however sometimes the jquery method is needed for IE6 as IE6 won't recognize
a div:hover or li:hover
but in this situation css only works best.
On Sat, May 23, 2009 at 6:42 PM, Karl Swedberg wrote:
> The OP is asking about a very simple link rollover. Since it appears people
> aren't taking
Hello,
instead of:
$(".town").live("mousemove",function(ev){ clearTimeout($timeout);
$target = ev.target; $timeout = setTimeout("showstuff()", 100);});
try something like this:
$('#zoom').bind('mouseover', function(e){
if(e.target.className.indexOf('town') != -1){
$target
The OP is asking about a very simple link rollover. Since it appears
people aren't taking RobG's advice and looking up "CSS rollovers" on
Google, here is a quick demonstration:
http://test.learningjquery.com/css-background-image.html
On May 22, 2009, at 2:41 PM, Andy Matthews wrote:
I beli
Thanks.
On May 22, 11:33 am, Rey Bango wrote:
> Each jQuery plugin author uses their own license. While most will use
> MIT or GPL to be consistent with jQuery, unless explicitly mentioned,
> you'll need to check-in with each author.
>
> Rey...
>
> doddstr13 wrote:
> > Are all jquery plugins ava
Al wrote:
Hi,
I'm trying to get some data as JSON, and want to show a spinning
animation while doing so. I have the following jQuery/HTML:
http://dpaste.com/46873/
The URL I pass to getJSON returns some data e.g. {'data': '123456789'}
and seems to be working properly and returning valid JSON.
In this code, triggered when when the user fills out the shipping info,
this code fades the form div, displays the loader gif, loads the billing
form into the form div, fades the loader and then fades in the form div.
Each fadeIn, fadeOut or load function has a second parameter which
consists
Well my browser percentage is more likely to be 70% FF, so it's goin
to be a big problem.
I even tried reducing the firing rate of my event but that doesn't
help either
On 23 mei, 14:28, runrunforest wrote:
> it crashes me, recommend you find alternative script. 30% of browser
> is FF
>
> On M
One thing I don't understand about your script, is the lack of an
extension in "/ajax/emailcheck"
Are you using an url rewrite or is some other technique involved? Seems
kind of silly to use a rewrite just for the mailcheck, but perhaps one
rewrite applies to all "/ajax/.*"
jsuggs wrote:
Hello, I'm very new to jQuery and trying out some of the tutorials.
In this tutorial, http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery
there is an exercise:
http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery
and I have a question about this snipped of code:
$(document).read
Hi,
I'm trying to get some data as JSON, and want to show a spinning
animation while doing so. I have the following jQuery/HTML:
http://dpaste.com/46873/
The URL I pass to getJSON returns some data e.g. {'data': '123456789'}
and seems to be working properly and returning valid JSON.
I pass a ca
Hello:
We are using jQuery JavaScript Library v1.3.1 for paging and sorting
purposes. This library is working fine when we are loading smaller
data sets (<1000 records) on the page. However, when data set starts
getting large (>3000 records), the initial page gives a script loading
error and the
-- Forwarded message --
From:
Date: Sat, May 23, 2009 at 2:13 PM
Subject: Posting error: jQuery (English)
To: nsharma...@gmail.com
Hello nsharma...@gmail.com,
We're writing to let you know that the group that you tried to contact
(jquery-en) either doesn't exist, or you don't h
Hi everyone,
I'm very new to Javascript but very impressed by JQuery, but now
rather stuck, I've read and read but found no solution. If anyone can
point me in the right direction I would be much obliged.
I have a set of tabs loading content via ajax:
My main tab page Jquery:
$(document).re
hi!
I'm new to jquery and I seem to have some problems.
For example let's take this script..
$.post("insert.php", { whatever:whatever },
function(data){
$("#status").html(data).slideDown("slow");
});
..if this script is executed correctly I should see t
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
I am trying to bind to a trigger issued by the silky smooth marquee
based on jquery (http://remysharp.com/2008/09/10/the-silky-smooth-marquee/)
Every time the marquee loops, I want to issue an alert. This is done by
binding to the 'stop' event, acco
I have problems using JQuery to create a menu with fade in and fade
out external images, i.e. i put mouse over a menu item and image fade
in on a another div.
My problem starts when i mouse over faster between itens. All images
appear at the same time.
I would like to schedule a time to stay on th
I am having a problem when loading jSquey from the Google CDN as
follows:http://ajax.googleapis.com/ajax/libs/jquery/
1.3.2/jquery.min.js">.
I have verified that the URL is correct and ir used in IE, the library
is downloaded.
I have used in in a site that does not require proxy, and i
it crashes me, recommend you find alternative script. 30% of browser
is FF
On May 23, 4:12 pm, geronimo3 wrote:
> I have someone else saying it too now So I still have this problem
>
> On 23 mei, 11:01, geronimo3 wrote:
>
> > Hmm thanks
>
> > damn then it is something with my FF then
> > I use
Thanks a lot kelly,
I wrote the php script and all working fine,
http://nitin.tech4you.org/Stock%20Widget.html
thanks again..
regards,
Nitin Sawant
On May 21, 8:08 pm, Kelly wrote:
> Brian said that JSON uses a key:value format, but it is really just a
> shorthand for Javascript literals. Whi
Hello Liam,
Prob is solved now, I migrated the task in php, now all
working fine..
Thanks a million for posting replies and helping me
regards,
Nitin Sawant
On May 21, 8:38 pm, Liam Byrne wrote:
> The code works fine here (apart from the security issue).
>
> I can't understa
I have someone else saying it too now So I still have this problem
On 23 mei, 11:01, geronimo3 wrote:
> Hmm thanks
>
> damn then it is something with my FF then
> I use 3.0.10 btw
>
> On 23 mei, 10:58, waseem sabjee wrote:
>
> > I just opened it up in FF3. working well. no crash.
>
> > On Sat,
Hmm thanks
damn then it is something with my FF then
I use 3.0.10 btw
On 23 mei, 10:58, waseem sabjee wrote:
> I just opened it up in FF3. working well. no crash.
>
> On Sat, May 23, 2009 at 10:49 AM, geronimo3 wrote:
>
> > I can't figure out how i can improve the speed in my dolumap in FF.
>
I just opened it up in FF3. working well. no crash.
On Sat, May 23, 2009 at 10:49 AM, geronimo3 wrote:
>
> I can't figure out how i can improve the speed in my dolumap in FF.
> All other browsers seem to do a bit well at least.
>
> It seems to crash all the time as soon as I mouseover a colored
I can't figure out how i can improve the speed in my dolumap in FF.
All other browsers seem to do a bit well at least.
It seems to crash all the time as soon as I mouseover a colored div.
(Well it just starts lagging too much)
I wouldn't recommend opening this when you have other FF tabsor
windo
I get it to work now, just change the selector "window" to "document",
The IE really has no idea what "window" is LOL.
The working code
$(document).keydown(function(e){
if(e.which == 37){ $('.prev').click();}
else if(e.which == 39){ $('.next').click();}
})
Yes, I partially agree. I've been in conversation with the developer
about it. Testing it this way tests the absolute speed of a method,
but does not take into account the patterns that this method allows.
Appending a node to the DOM 40 times is not the same as appending a
string to the DOM 40 t
48 matches
Mail list logo