MarcosBL schrieb:
Same issue here, i solved it just using gzip... not only it increases
speed (compresion of html up to 85%) but it solves the problem because
the html is fully loaded when it reaches the js execution.
Thanks all for your suggestions, I'll give them a try.
Its all a bit tric
javascript also as the SOP (same origin policy)
On Apr 3, 7:23 am, "Erik Beeson" <[EMAIL PROTECTED]> wrote:
> Agreed. This comes up every few months. In this case, it looks like
> they're talking about JSON data being readable from any host. I guess
> they mean if you're getting data via the remo
Hi,
I'll never worked with curvycorners... but ill will try something
today and i let u know something later... in meantime maybe u shoud
try the curvycorners forum (http://www.curvycorners.net/forum/)
On Apr 3, 4:45 am, "Glen Lipka" <[EMAIL PROTECTED]> wrote:
> CurvyCorners looks so cool.
> I d
Agreed. This comes up every few months. In this case, it looks like
they're talking about JSON data being readable from any host. I guess
they mean if you're getting data via the remote script tag and
callback technique, other sites could do the same thing and access
your data? Seems like a prett
Yes, sorry, that's what I was refering too about the "old problem".
Should have been a bit clearer.
It only works on "shared" sites.
Karl Rudd
On 4/3/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
Or is it the old problem with domain wide cookies? I give a cookie for
x.com on jake.x.com and you read my c
Or is it the old problem with domain wide cookies? I give a cookie for
x.com on jake.x.com and you read my cookie on karl.x.com? You still
can't ajax to jake.x.com.
It sounds like disinformation to me!
On 4/2/07, Karl Rudd <[EMAIL PROTECTED]> wrote:
Bah, it's not a new vulnerability, it's alwa
Nice article...
AJAX, as Kevin Murphy said ... "Since Ajax is in its infancy, this is
fair less of a problem than, say, buffer overflows were when they
first came to light, Chess noted. There are not a lot of legacy Ajax
applications that will need to be fixed. So, Fortify wants to
publicize its
Hi guys,
I'm having problems within the callback function processXML in the
following code:
It works this way:
function processXML (xmlData){
$('div#days1').text($("items>item>days",xmlData).text());
$('div#total1').text($("items>item>total",xmlData).text());
}
not this way:
fu
Bah, it's not a new vulnerability, it's always been there and always
been known about.
I call FUD on this.
The following is an excerpt that is the keystone of the whole thing:
"In an example attack, a victim who has already authenticated
themselves to an Ajax application, and has the login coo
Hi guys,
Article below says all big JS Libraries are vulnerable including JQuery
I didn't quite understand the article, but was hoping for some feedback
on it
http://www.cbronline.com/article_news.asp?guid=484BC88B-630F-4E74-94E9-8D89DD0E6606
Cheers,
--
Kush Murod, Web applications devel
Hey,
Works good, in FireFox 2 PC (win xp sp2)
nice touch with the table top right corner menu, its nice way to
toggle.
Nilesh
> Any feedback is appreciated!
>
> Cheers,
> /rw
On 4/2/07, Roman Weich <[EMAIL PROTECTED]> wrote:
Hey all,
I've created a plugin to toggle the visibility state of whole table
columns (collapsing and expanding them). Also it can remember the last
state using the cookie-plugin.
Maybe you want to take a look:
http://p.sohei.org/jquery-plugins
Thanks guys, I got rid of the function and using this.
$('a.respond').bind('click', function() {
$(this).prev('div').block('Please Login to submit your opinion.',{ border: '3px solid #a00'});
return false;
});
so wouldnt I need to chain the settimeout
CurvyCorners looks so cool.
I dont have a good answer, but I have had similar troubles and gave up. :(
Please let us know your final result.
Glen
On 4/2/07, Rob Wilkerson <[EMAIL PROTECTED]> wrote:
I haven't had enough sleep lately and corners (jquery.corner.js) are
completely kicking my ass
I think it's useful to consider things beyond speed.
Unless your users can "really" tell the difference between the different
selector speeds, you might want to consider the overall readability and
maintainability. I am a big believer in "striving" towards Semantic
Markup. This means that lists
Your setTimeout syntax looks a little off. Maybe:
setTimeout(function() { $el.unblock(); }, 5000);
--Erik
On 4/2/07, Mike Alsup <[EMAIL PROTECTED]> wrote:
Tom,
If you're still using a function to block, it's something like this:
function blockElement(id) {
var $el =$('#'+id);
$el.
Really nice pluguin :)
thanks for sharing it Roman
On Apr 2, 4:08 pm, Roman Weich <[EMAIL PROTECTED]> wrote:
> Hey all,
>
> I've created a plugin to toggle the visibility state of whole table
> columns (collapsing and expanding them). Also it can remember the last
> state using the cookie-plugin
I haven't had enough sleep lately and corners (jquery.corner.js) are
completely kicking my ass. I have an image for which I'd like to put
a small caption. I'd like that caption to be inside of a white div
with rounded corners and a 1px black border. I can't seem to find the
right combination o
On Apr 2, 2007, at 9:05 PM, Joao Pedrosa wrote:
Hi,
We'd also like to hear your opinions on any issue that you think
merits
reconsideration. Whether it be file size, components that should
be in
core or site documentation, we want to hear about it.
In Ruby-land, RubyForge has been a ve
I see 1 error in safari on line 1! not much help... I think you need
the nightly webkit download with the debugging support! That's the
good news!
The bad news is I tried it on webkit and it works!!! different
location of pop up but it pops up the confirm dialog!
On 4/2/07, Dave Stewart <[EMAIL
Hi,
We'd also like to hear your opinions on any issue that you think merits
reconsideration. Whether it be file size, components that should be in
core or site documentation, we want to hear about it.
In Ruby-land, RubyForge has been a very successful initiative. Together with
RubyGems for pa
Go to www.conciencia.net and click either of the two buttons
underneath the calendar (Escuche/Vea el programa), the "Preguntas
Frecuentes" link, or any of the links in the grey box further down on
the page. I actually don't have Safari available to test this myself,
but I asked someone to test it
Dan, 165 references to jquerify on google! Perhaps you should submit
it to wikipedia!!
On 4/2/07, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote:
Rob,
>Yes, this it what I was planning to do from my first email:
>>> ...when IE
>>> calls the 's click handler, it does this *before* updating
>>> th
Tom,
If you're still using a function to block, it's something like this:
function blockElement(id) {
var $el =$('#'+id);
$el.block();
setTimeout(function() { $el.unblock(); 5000 });
}
On 4/2/07, Tom Shafer <[EMAIL PROTECTED]> wrote:
How could I use settimeout on block so that blo
I haven't had any problems with Safari and returning false. A link to
a page where we can look at the code would help.
Karl Rudd
On 4/3/07, Dave <[EMAIL PROTECTED]> wrote:
I have a basic html page that includes a couple links to media files.
I've set the href of those links to actual mp3s. Th
How could I use settimeout on block so that blockui will goway after a
certain amount of time?
I have a basic html page that includes a couple links to media files.
I've set the href of those links to actual mp3s. Through jQuery
(version 1.1.2) I've added click handlers to these links that will
sometimes return false, based on a few cookies the user may have. The
reason I don't use the hash
Same issue here, i solved it just using gzip... not only it increases
speed (compresion of html up to 85%) but it solves the problem because
the html is fully loaded when it reaches the js execution.
On 3 abr, 01:08, Klaus Hartl <[EMAIL PROTECTED]> wrote:
> Jörn Zaefferer schrieb:
>
>
>
>
>
>
>
Rob,
>Yes, this it what I was planning to do from my first email:
>>> ...when IE
>>> calls the 's click handler, it does this *before* updating
>>> the .selectedIndex property, hence you cannot tell which item has been
>>> double-clicked on.
>
>>> I could use a timer to get around this problem bu
Jörn Zaefferer schrieb:
Hi folks,
I'm trying to solve a severe performance issue I'm experiencing in an
enviroment that heavily uses incremental page rendering. I have several
parts on one page that are basically independent, but to apply any
JavaScript to one of those parts (actually jsr16
You could try Charles, it's a reverse proxy that can be used for throttling
(among other things)
http://www.xk72.com/charles/
->N
.:||:._.:||:._.:||:._.:||:._.:||:._.:||:._.:||:._.:||:._.:||:._.:||:._.:||:.
Nathan Young
Cisco.com->Interface Development
A: ncy1717
E: [EMAIL PROTECTED]
2007/4/3, Shaun Kester <[EMAIL PROTECTED]>:
Thank you Robert and Richard for your responses. So far I don't know
enough about Ruby or PHP to even begin to understand how I could get
this to work on my Windows 2003 server.
I got a glimmer of something interesting there though, maybe even a
busi
Do you have any software like this that you could recommend?
I have long wanted something that could do this
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Erik Beeson
Sent: Monday, April 02, 2007 3:43 PM
To: jquery-en@googlegroups.com
Subject:
To simulate low bandwidth, you might be better off using throttling
software on your local machine and crank it up to 11.
For IE debugging, does the web developer extension not help?
--Erik
On 4/2/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
Hi folks,
I'm trying to solve a severe performan
With classes it's faster because searching for just a class means
traversing the entire DOM looking for elements with the class. But
with tag.class, jQuery does document.getElementsByTagName('tag') and
only searches those elements for the given class.
I think tag#id works the same ways as tag.cl
2007/4/2, Jörn Zaefferer <[EMAIL PROTECTED]>:
Hi folks,
I'm trying to solve a severe performance issue I'm experiencing in an
enviroment that heavily uses incremental page rendering. I have several
parts on one page that are basically independent, but to apply any
JavaScript to one of those pa
Cool, I've been reading DZone for awhile now. Thanks for the heads-up Rey.
On 4/2/07, Rey Bango <[EMAIL PROTECTED]> wrote:
Dzone.com, one of the top tech news aggregators, has recently redesigned
their whole site. The big news is that they've chosen to incorporate
jQuery for this redesign! I'm
Dan,
Yes, this it what I was planning to do from my first email:
...when IE
calls the 's click handler, it does this *before* updating
the .selectedIndex property, hence you cannot tell which item has been
double-clicked on.
I could use a timer to get around this problem but it's a bit of a
h
Thank you Robert and Richard for your responses. So far I don't know
enough about Ruby or PHP to even begin to understand how I could get
this to work on my Windows 2003 server.
I got a glimmer of something interesting there though, maybe even a
business plan.
Has anybody or is anybody intereste
css:
faster div.someClass
slower .someClass
id:
faster #someId
slower div#someId
With IDs, if you use a simple search like "#someId", jquery knows to use
getElementById('someId'), which is MUCH faster than searching through every
div on the page and checking each one for an id of 'someId'. With
Hi.
I can't give much super targeted help with the info you provide. I have a
couple thoughts that may or may not be helpful.
Although there are exceptions, usually javascript that fails because the page
is not loaded will still fail even if your network connection is very fast (in
other wor
I think I'll give it a shot in a reporting app I'm building, letting
users dynamically show/hide columns that are relevant to the info they
are trying to analyze. Thanks for your work, Roman!
On Apr 2, 2:25 pm, Roman Weich <[EMAIL PROTECTED]> wrote:
> Andy Matthews schrieb:> Good job Roman! Work
Jorn,
I've created Progress Meters that worked in IE/FF before that used
incremental page loads to update the meters--so I know it's not a FF issue
(the code was non-jQuery related.)
However, I could see if your code is inside a tag or something
where FF might have problems.
-=Dan
>-Origi
Hi folks,
I'm trying to solve a severe performance issue I'm experiencing in an
enviroment that heavily uses incremental page rendering. I have several
parts on one page that are basically independent, but to apply any
JavaScript to one of those parts (actually jsr168 portlets on a
websphere
2007/4/2, Shaun Kester <[EMAIL PROTECTED]>:
Hi everyone,
I was wondering if anyone had made progress on using jQuery on the
server side. I'm a Visual Foxpro programmer (yeah, I know MS
discontinued it) and regularly pull the HTML of a page down to a file
or variable to process. What I'd like t
ATTN: Christian or anyone else familiar :)
I'm trying to use TableSorter for a few large batches
of data, but am getting JS errors depending on what
content is in the columns.
For example:
-Digit-only data works, but MIXED data (ex: some
fields are empty, and some have decimal values) fails.
-
Hey,
{Sorry for my lousy english, it's not my first language.}
First of all, i'd like to excuse my bad manners to come posting
without first introducing myself to the list
(but i can remedy that soon enough):
I found out about jQuery last year while a friend tried to convince me
to move away fr
Rob,
>Because when you double-click on an option in one box it should transfer it
>to the other box.
>It's commonly used in applications hence I want to replicate a behaviour
>that people will have seen and might expect - I would expect it in this
>situation.
The reason I ask, is just attach the
I believe you can speed it up even further if the tags with classes are
in a div that has an ID.
$("#divID tag.class")
This way the dom traversal is limited to only that section of the document.
http://www.learningjquery.com/2006/12/quick-tip-optimizing-dom-traversal
-Marshall
spinnach wr
if the elements you search for are all of the same type (eg. div), it's
much faster to include the tag, because without the tag jquery would
have to search through all elements on the page to find the elements
with the corresponding class, instead of just searching through the divs..
dennis.
Erik I was under the impression that the exact opposite was true for
searches by class: that including the tag slows it down.
I may be mistaken, you'd have to check the list archives or perhaps check
the script, I may do the same tomorrow.
rob
On 4/2/07, Erik Beeson <[EMAIL PROTECTED]> wrote:
You should look at the additional resources page, there are some items
at the bottom that tie programming lang to jquery.
For example
http://projects.cyberlot.net/trac/jqpie
On 4/2/07, Shaun Kester <[EMAIL PROTECTED]> wrote:
Hi everyone,
I was wondering if anyone had made progress on using
-dean schrieb:
Hi guys,
I know that many jQuery users use packer to compress their scripts/
plugins. To help ensure the quality of packer I would appreciate a
little help from the jQuery community. :-)
Could you try re-compressing your scripts with the new version to make
sure I haven't introd
I thing you can't change the value property from a input file.
In your example page it creates a new input file every time you choose a
file and hide the old input file with the filled value. Thats the magic.
When you click on delete it remove the hidden input file.
Sorry my bad english.
On 4/
Andy Matthews schrieb:
Good job Roman! Works great in IE7.
What types of situations can you see this being used in?
Thanks Andy, I haven't tested it in IE7 yet.
Well, for example...I've a table that is showing a lot of userdata
(phone numbers, locations, birth dates and some other stuff). S
Hi everyone,
I was wondering if anyone had made progress on using jQuery on the
server side. I'm a Visual Foxpro programmer (yeah, I know MS
discontinued it) and regularly pull the HTML of a page down to a file
or variable to process. What I'd like to to is be able to select the
HTML using jQuery
sorry, what digg.com does when you arent logged in
On Apr 2, 3:55 pm, "Tom Shafer" <[EMAIL PROTECTED]> wrote:
> no, im trying to do something like what dig does if you arent logged
> in
>
> On Apr 2, 2:52 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote:
>
> > I'm pretty confused about what is actu
As always, dean's packer can be found here:
http://dean.edwards.name/packer/
Here's the release notes for the 3.0 beta:
http://dean.edwards.name/weblog/2007/04/packer3/
--John
On 4/2/07, -dean <[EMAIL PROTECTED]> wrote:
Hi guys,
I know that many jQuery users use packer to compress their scr
ID is found by using document.getElementById(), which is probably
about as fast a DOM operation as can be had. Use ID for sure.
Also, if I'm not mistaken, it helps class searches a lot if you also
include the tag that you're looking for: $('div.someClass') instead of
just $('.someClass').
--Eri
Geoff
If they are unique and speed is important then id is the only way to go.
Classes are for when there are several instances of the same *type* of
thing.
rob
On 4/2/07, Geoffrey Knutzen <[EMAIL PROTECTED]> wrote:
I have the option of naming a few containers using either classes or ids.
It
no, im trying to do something like what dig does if you arent logged
in
On Apr 2, 2:52 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote:
> I'm pretty confused about what is actually needed and the structure of
> the markup but I'm going to take a shoot at it.
>
> I'm going to assume that you have ma
I have the option of naming a few containers using either classes or ids. It
is assured that there will only be 1 instance of one of these containers on
any page.
Is it better to name them with a class or an id?
Is there any speed benefit from using an id?
These containers will be accessed
Hi guys,
I know that many jQuery users use packer to compress their scripts/
plugins. To help ensure the quality of packer I would appreciate a
little help from the jQuery community. :-)
Could you try re-compressing your scripts with the new version to make
sure I haven't introduced any new bugs
Correction... your suggestion of putting return false in the function
DID work. The inline onclick='return false' was not needed afterall.
Thanks!
jeremy
On Apr 2, 2:29 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote:
> I'm glad you got it working with the inline onclick handler. Again I
> believ
If you only want to call one, then just provide it as the callback to
your main Ajax call. .ajaxStart() is designed to work globally,
whereas calling .attr() just before you make an Ajax call would work
for that immediate call.
--John
On 4/2/07, ronaldo <[EMAIL PROTECTED]> wrote:
Hi all,
I
Because when you double-click on an option in one box it should transfer it
to the other box.
It's commonly used in applications hence I want to replicate a behaviour
that people will have seen and might expect - I would expect it in this
situation.
I also think that a 'non-selected' and a 'selec
I'm glad you got it working with the inline onclick handler. Again I
believe this is a priority to be fixed for the 1.1.3 release as it can
be very frustrating.
--
Brandon Aaron
On 4/2/07, tpneumat <[EMAIL PROTECTED]> wrote:
Thanks. Actually, I worked on avoiding that function but there is t
Thanks. Actually, I worked on avoiding that function but there is too
much dynamic stuff being done and it would require a lot of work to
change my system. I actually created my own crude .click() function
of sorts that worked like this.
function nFunc(id) {
if(document.getElem
Luc Heinrich schrieb:
On 2 avr. 07, at 11:45, Luc Heinrich wrote:
For example, when using the test page from the latest svn: in the
'Sample 1 - default' tree, collapse 'Folder 2' then expand it again:
boom, the 'Subfolder 2.1' node is not collapsible anymore. This
apparently happens only if
Good job Roman! Works great in IE7.
What types of situations can you see this being used in?
andy
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Roman Weich
Sent: Monday, April 02, 2007 2:09 PM
To: jquery-en@googlegroups.com
Subject: [jQuery
Klaus Hartl schrieb:
Ralf S. Engelschall schrieb:
I'm using the jquery.cookie.js plugin from the jQuery SVN and I adjusted
it (see patch below) to allow me to...
1. easily delete a cookie with the (IMHO more intuitive)
$.cookie("name", null) calls instead of the
$.cookie("name", '', { e
Hey all,
I've created a plugin to toggle the visibility state of whole table
columns (collapsing and expanding them). Also it can remember the last
state using the cookie-plugin.
Maybe you want to take a look:
http://p.sohei.org/jquery-plugins/columnmanager
Any feedback is appreciated!
C
You can just return false at the end of your click handler method:
$('a').click(function() {
doStuff();
doSomeMore();
return false; // stop event
});
However, that might still not stop IE, there is a ticket for this to
be fixed btw. I would just avoid using the .click() to trigger the
Thanks Brandon.
Yes. Thanks, that does help. I knew it was related to the click
event all along, but I just didnt' know what was different about the
click. The problem stems from using javascript: void(0); on my
hyperlinks. See this site.
http://blog.reindel.com/2006/08/11/a-hrefjavascriptvoi
I'm pretty confused about what is actually needed and the structure of
the markup but I'm going to take a shoot at it.
I'm going to assume that you have markup like this:
Respond
Respond
If that is correct then I would suggest adding a class name to the a
tags ... something like "respond". U
Could I create in my target input a JQuery function to
load, clone, submit, autofill or I dont know what to accept user choice from
http://the-stickman.com/web-development/javascript/upload-multiple-files-with-a-single-file-element/
So I could get each path(element) and insert into each target
Jeremy,
My first guess as to the source of this weirdness would be the last
line of the script tag at the bottom of the body tag.
$('#StartNew').click();
The click() event handling is one of the major things that changed in
1.1.1. It also fires the actual click event of the element if one
exis
Hi all,
in my app i've a getJson call returning a map, one element of which is an
array named TAGLIE with say 10 elements; my object is named "il modello", so
i've:
var taglie = ilModello.TAGLIE;
in my form i've a table, with 2 td's
...
...
...
...
in every of these
a test
- Original Message -
From: "Alex Ezell" <[EMAIL PROTECTED]>
To:
Sent: Monday, April 02, 2007 8:04 PM
Subject: [jQuery] Re: Interface Slider - Clicks don't trigger onChange event
I just built something with the slider. When I get home this evening,
I'll do some investigating
No that diddnt work. Here is what I am doing, when you click your turn
it should bring up the block.
On Apr 2, 1:15 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> Ok, then I think you have too many click handlers. Maybe something like this?
>
> function BlockLog(id) {
> $('#'+id).block('Proce
I just built something with the slider. When I get home this evening,
I'll do some investigating to see what happens on my implementation.
/alex
On 4/2/07, skimber <[EMAIL PROTECTED]> wrote:
Hi all,
Is anybody else experiencing this? With the Interface "Slider"
plugin, clicking somewhere on
I am feeling all alone on this one. I guess I will have to take
Andrew's suggestion and do browser detection to deliver a different
version of jquery for IE6. Kind of disappointed with that, however.
Jeremy
On Mar 30, 2:48 pm, "Jeremy Dill" <[EMAIL PROTECTED]> wrote:
> Yes. And 1.1.1. Packed
On the off-chance I'm starting to get my head around jQuery try adding
this to your code where you have .prev():
.prev("img", this)
I'm pretty sure that should work...
Rob
ronaldo wrote:
Hi all,
I hope you can help. I have a page where i am trying to make two seperate
ajax calls. and as
I couldn't figure out how to get Google Groups to
recognize the 2 addresses as being the same so
I just sent an email to [EMAIL PROTECTED]
using the email address that had the "+"
Too bad my old posts no longer show up as being mine using
my regular account, but oh well...
Since Gmail allows you
Ok, then I think you have too many click handlers. Maybe something like this?
function BlockLog(id) {
$('#'+id).block('Processing...');
}
Mike
On 4/2/07, Tom Shafer <[EMAIL PROTECTED]> wrote:
I am making unlimited divs using php and below eac div there is a link
that says something like
Dzone.com, one of the top tech news aggregators, has recently redesigned
their whole site. The big news is that they've chosen to incorporate
jQuery for this redesign! I'm still gathering specifics but I do know
that John Resig, project lead for the jQuery project, assisted them
during the in
Hi all,
I hope you can help. I have a page where i am trying to make two seperate
ajax calls. and as such in the document.ready code i have 2 seperate
ajaxStart function depending on which div's need updating:
$("#diva").ajaxStart(function(){
$("#diva").prev("img").attr({ src: "images/b
Maybe post some code or psudo-code to help understand the problem.
$("div").magicHappens("here");
Glen
On 4/2/07, pooks <[EMAIL PROTECTED]> wrote:
I have spent over and about 20 hours with a simple question. I have
div and links inside the div and I need to change the div from links
to anot
I am making unlimited divs using php and below eac div there is a link
that says something like respond,
But if they are not logged and they click on respond the div is
blocked out using blockui. So I need to pass the id of the div to be
blocked to this function so that the div will be blocked for
Tom, what exactly are you trying to do? You have an anchor click
handler that adds a click handler to some other element (BlockLogin1)
which then blocks some other element (blockMe)? What dynamic divs are
you referring to?
Thanks but it doesnt seem to work. I am really stuck on how to do
thi
Thanks but it doesnt seem to work. I am really stuck on how to do
this. I have tried everything I can think of. Has anyone ever done
anything like this before?
On Apr 1, 8:41 pm, Kush Murod <[EMAIL PROTECTED]> wrote:
> Hi Tom,
>
> I'd normally do this, not sure if it is correct way of doing thing
well looks like next plugin improvement for form plugin, hey Mike Alsup :)
macm wrote:
Hi
I am trying upload without refresh so I tried
http://the-stickman.com/web-development/javascript/upload-multiple-files-with-a-single-file-element/
Works like a charm but:
Browser Peculiarities
Hi all,
Is anybody else experiencing this? With the Interface "Slider"
plugin, clicking somewhere on the slider, rather than dragging the
handle, does NOT cause the onChange function to be run.
The onSlide function is called under the same circumstances, but I
need to run code only once the use
Thanks Mike, I still had old form script included down below, my bad :)
Mike Alsup wrote:
In other words I can't see any file being uploaded. I'll post an example
if needed, let me know.
It's up to you to mange the uploaded files in your php script. If you
don't move them with move_uploade
Hi
I am trying upload without refresh so I tried
http://the-stickman.com/web-development/javascript/upload-multiple-files-with-a-single-file-element/
Works like a charm but:
Browser Peculiarities
* Internet Explorer and Netscape do not use the VALUE attribute as
the default contents o
thanks Rob
Robert O'Rourke wrote:
Hi Kush,
I ran into that problem too but because of a different name i'd
used for one of my divs. In my case it was #gallery.
Apparently IE creates global variables for the DOM that can easily
conflict with variable names present in the plugins (i think
Just curious, by why would you even want to put click/dblclick event
handlers on each option element?
-Dan
>-Original Message-
>From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
>Behalf Of [rob desbois]
>Sent: Monday, April 02, 2007 11:59 AM
>To: jQuery (English)
>Subject: [j
I have spent over and about 20 hours with a simple question. I have
div and links inside the div and I need to change the div from links
to another divs and then be able to return to the first div with a
link... I have tried to make this from ten different tab menus, ajax,
jqueries and what not tu
Here's my 2 cents...
I think the core developers now have a pretty good idea of what the jQuery
"core" should and shouldn't be. I some sense, the hardest part is trying to
decide how much to include in the base package. It's also one of the largest
contributors to the overall size of the librar
No hurry, I was just wondering on what and how :) Great to hear that
there is progress!
On Apr 2, 6:23 am, "Paul Bakaus" <[EMAIL PROTECTED]> wrote:
> Hey Abdul!
>
> Good that you ask, "soon" is normally a bit earlier ;-)
> Actually there are news, the main module, drag & drop, is getting more
> s
1 - 100 of 139 matches
Mail list logo