On Oct 11, 2:51 am, GrandNagel <[EMAIL PROTECTED]> wrote:
> I'm trying to make the n2menu hide all expanded submenus when you
> mouse out of the menu. Does anyone have any experience with this
> menu?
Can you post your HTML markup?
--
Email: rrjanbiah-at-Y!comBlog: http://rajeshan
Hey Rick,
My client, http://jingleads.com (also a jQuery powered site), has been
seeing a trend of a growing number of sites requesting 3 to 5 second landing
page musical jingles and audio signature snippets. I'm sure music on sites
work, it just depends on what people are trying to sell or conve
On Oct 11, 11:26 am, PaulM <[EMAIL PROTECTED]> wrote:
> Have you seen how facebook nicely lets users edit their account by
> using those clever popups and after you perform the functionality you
> close the small window and go on with your browsing.
>
> How can someone achieve this with jquery?
Hi,
Have you seen how facebook nicely lets users edit their account by
using those clever popups and after you perform the functionality you
close the small window and go on with your browsing.
How can someone achieve this with jquery?
Thanks
Hi all,
I use Autocomplete plugin (1.0 Alpha) mostly for form inputs bound to
foreign key columns. For instance I have a user_position table with
two columns: user_id and position_id. On new appointment form I have
two autocomplete text inputs with the following code:
As you can see the
ha ha,
cheers for that, at this early stage I am trying to stay away from
plugins and anything I don't understand so the example you linked to
was perfect.
On Oct 11, 2:54 pm, seedy <[EMAIL PROTECTED]> wrote:
> haha, i totally didn't realize the faq mentioned the plugin. i should goto
> sleep..
There are those who say that "$ is not a function" almost always
occurs from the path to the jQuery core file being incorrect. ;)
Maybe there is a subtle spelling mistake in the HTML that links to
your new version of jQuery? Something like "jquery.1.2.1.js" instead
of "jquery-1.2.1.js"? Quintruple
I forgot to mention, you are using code to attach the bgiframe plugin
to Superfish, but you are not including that plugin's code. This
generates errors everytime you hover a menu item. If you don't think
select boxes will ever appear under the submenus, simply rip all that
code out.
Joel Birch.
Thanks, Karl and Dave for your help on this.
I liked Dave's more compact code, this made me understand a little bit
more of how jQuery works, so I'm going with that for now.
Karl, I appreciate your reply as well, since speed might be a concern
in the near future. I'll keep that advice in mind al
I'm using n2Menu to display three stacked menus with as many as two
levels of sub menus for each "top level" menu.
It's quite confusing when you mouse up into the top menu and all the
lower top level menus open their 2nd level menus along the way.
Is there a technique I can apply to n2menu which
hello,
I've a simple javascript that worked very well with an old version of
jquery , but have some problem with latest version of jquery:
given a code like this:
...
info to toggle
when clicking on the link which class is "myclass", I want to toggle
the content in the second div after the one
This is a common complaint. To fix it, in the CSS make sure that the
anchor elements' left and right padding plus explicit width adds up to
the width of the submenu ul explicit width.
Joel Birch.
Hi Jon,
Thanks for your feedback on the commented CSS file! To help solve your
problem though, with so many factors at work we really need a working
page that demonstrates the issue you are trying to solve. Is this
doable?
Joel Birch
Make sure that the anchor elements have an explicit width and that
their width plus horizontal padding adds up to the width of the
submenu ul element width.
Joel Birch.
*chuckle* As Dave has shown, sometimes it's good to rebuild code "from
scratch" rather than trying to optimise existing code (which is what I
did). Well done Dave.
Karl Rudd
On 10/11/07, Dave Methvin <[EMAIL PROTECTED]> wrote:
>
> > // save old active menu
> > var oldActive = $("#mainnav li.acti
> For example, say I have a table with 10 rows. If I click on the 7th
> row, is it possible to obtain the number 7 simply?
The tr element should have both a rowIndex and a sectionRowIndex; I've
never used them but they're documented.
haha, i totally didn't realize the faq mentioned the plugin. i should goto
sleep...
seedy wrote:
>
> I should have mentioned there is a plugin that will help with also called
> livequery
> http://brandonaaron.net/docs/livequery/
>
>
> robing-2 wrote:
>>
>>
>> Thanks for that link seedy, I
I should have mentioned there is a plugin that will help with also called
livequery
http://brandonaaron.net/docs/livequery/
robing-2 wrote:
>
>
> Thanks for that link seedy, I have managed to get the new buttons
> working by adding the click events back on the elements after the dom
> changes
Olaf, thanks.
I have fixed it.
On 10/10/07, Olaf Bosch <[EMAIL PROTECTED]> wrote:
>
> Leandro Vieira Pinho schrieb:
> > The jQuery lightBox plugin 0.2 version are available.
> >
> > It´s just a release for bug fixes.
>
> Thank you. You have a false URL in the script self, see in the comment
> yo
> // save old active menu
> var oldActive = $("#mainnav li.active");
>
> // clear actives
> $("#mainnav li.active").removeClass("active");
>
> // activate current
> $("#mainnav li a").filter(function() {
> return isCurrent(this, 'href');
>
> }).parent().addClass("active");
>
> // re-activa
I haven't looked at the code you linked to but I've looked at the code
you posted. It's actually pretty compact, not to much room for
chaining.
The easiest "speed up" would be to "cache" your selectors, the
"mainnav" in particular:
var menu = $("#mainnav");
So this: $("#mainnav li.active")
You have the arguments to setTimeout reversed.
setTimeout is a browser function, not a jQuery function. Just Google for
javascript settimeout and you'll find it.
-Mike
> From: marc0047
>
> Thanks, 'setTimeout' gives me a big jump start!
>
> However, I had a little trouble getting it to work:
> var all = $("#tagsSelect").html() + " " + json[eid][type][ascii] + "\n";
> $("#tagsSelect").html(all);
Why not this?
$("#tagsSelect").append(
'" +
json[eid][type][ascii] + "");
Thanks, 'setTimeout' gives me a big jump start!
However, I had a little trouble getting it to work: Firebug is warning
me that setTimeout is possibly missing quotes and arguments, but I'm
pretty sure I followed your example exactly. The following setup has
the yellow box (#box1) performing the o
Currently I'm using the latest version of the jQuery plugin Thickbox:
http://jquery.com/demo/thickbox/
What I'm trying to do is echo out the value of a form in the same
Thickbox window using ajax.
I'm also using the jQuery.Form plugin. Here's my code, if anyone could
help that'd be awesome.
// o
I would like to grab a string that contains '<' and '>' and NOT have
jQuery eval and force my browser to render it has html. It's
difficult for me to convey what I want, but basically I am trying to
send it latin or unicode entity references for the angle brackets and
want to write those brackets
Thanks for that link seedy, I have managed to get the new buttons
working by adding the click events back on the elements after the dom
changes.
I added the the click function to a variable to another function which
i call after i change the dom.
$('#panal_add').click(function(){
$("form").
I'm trying to make the n2menu hide all expanded submenus when you
mouse out of the menu. Does anyone have any experience with this
menu?
This is a really cheesy way to accomplish it...
var onMouseOver = function(){
// ... all existing code snipped
setTimeout ( function() { removePrevio
Eek! Sorry about the problem with the rounded-corner examples.
Everything should be running just fine now. If you see any more
problems, please let me know.
And much thanks to everyone who spotted that problem for me! You guys
are great.
Cheers,
--Karl
_
Karl Swedberg
ww
load ...
success callback starts function(){
$('#yellowDiv').fadeOut('normal', function(){
var offset = $('#blueDiv').offset(); // using dimensions
plugin, or
var offset = {left:$('#blueDiv').css('left')}; // if css has
left set, or whatever
setTimeout(2000, functi
Robert,
>> It does seem like the global events should fire *before* individual
>calls,
>> that way you could cancel the other events in the queue...
>>
>
>really? i think the docs say the other way around.. i like to know how
>that could be done - cancel the other events. not for the error
>handl
Do you have anything we can look at?
On Oct 10, 8:56 pm, Jangla <[EMAIL PROTECTED]> wrote:
> I've got a 3 level vertical menu working...ish.
>
> For some reason, when the animation happens, the menu fades in to the
> width of the link in the menu, and then "pops" out to the full
> required width.
Try it this way...
(function($){ // receiving $ means you can use $ shorthand from now on
$.fn.extend({
mouseOverImg : function(class) { // start of mouseOverImg
function
// all the inner workings of the function .
$(this).addClass .. etc, etc
.
Leandro Vieira Pinho schrieb:
The jQuery lightBox plugin 0.2 version are available.
It´s just a release for bug fixes.
Thank you. You have a false URL in the script self, see in the comment
you written:
* @example Visit http://leadrovieira.com/projects/jquery/lightbox/ for
more informatio
ct several values for the
same property.
Could you recheck your resources?
-- Jörn
__ NOD32 2584 (20071010) Information __
This message was checked by NOD32 antivirus system.
http://www.eset.com
http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_Ajax_request.3F
robing-2 wrote:
>
>
> Hello Group,
>
> This is my first post to the group and I am pretty new to the jquery
> and I have just come up against a slight problem that I can't resolve
> so a
Hi,
Thanks for getting back to me.
I've since solved that problem and moved onto another one!
I've got the animations to work but for some reason, there's a "pop"
at the end of the animation. When the sub-menu first appears, it's the
width of the text contained within it. It then "pops" out to
Hi
I would like to know how I can use JavaScript Compressor in Rhino like
jQuery' snv.
Regards
take a look at http://rails.codejanitor.us/jq.html in firefox all is
good. However, in IE7, if you slowly scroll to the right while on the
div, then the blue line actually follows the mouse outside of the div.
Any ideas on how to patch/fix?
Hello Group,
This is my first post to the group and I am pretty new to the jquery
and I have just come up against a slight problem that I can't resolve
so any help would be greatly appreciated.
I have a small form that when the submit button is clicked gets the
form input saved to a database vi
It's worth noting here that if you are only using small parts of Ext then
download a custom EXT because it is quite a bloat when you've got
everything, but otherwise EXT is fantastic at creating UI's
On 05/10/2007, NccWarp9 <[EMAIL PROTECTED]> wrote:
>
>
> This thing looks asome.
>
> On Oct 4,
Karl Swedberg wrote:
> Is anyone else having the same problem of not seeing anything remotely
> like a demo or not seeing the lists of features (smart positioning,
> flexible behavior, many option)?
All working fine for me and very obvious what it is and how to use it.
However, the round corner
On Oct 10, 4:32 pm, "John Resig" <[EMAIL PROTECTED]> wrote:
> The only way to semantically capture the submit button, in a browser,
> is to monitor which button is actually clicked. You can do this with
> the Form plugin:http://malsup.com/jquery/form/
OK, and there is no way to achieve the old be
I've got a 3 level vertical menu working...ish.
For some reason, when the animation happens, the menu fades in to the
width of the link in the menu, and then "pops" out to the full
required width.
Anyone have any similar experiences or can help?
Sean O wrote:
> $("input").keyup(function(){
> var self = this;
> var upd = setTimeout( function() {
> updateField( $(self) ); // function outside $ scope to
> update field
> contents in dB
> },6000);
> });
>
The "up
Phunky,
I'm playing in that area right now. The code below shows part of a
Members object that reads in club membership data in json format and
builds an html table from it. Each individual member object in the
json is actually an array of data fields for efficiency sake, eg:
{"members":[
...
["
I found a decent article yesterday on layout of a web page's front page
for marketing purposes.
http://blue-gnu.biz/content/foss_project_marketing_howto_start_home
Perhaps there's some tips there that might help?
That said, I had no problem figuring out what ClueTip was and finding
the demos.
Very cool, but I can't get the rounded corner demos to work in FF2 or IE7.
=(
On 10/10/07, Danjojo <[EMAIL PROTECTED]> wrote:
>
>
> Great work!!
>
> Only recommendation would be to move your example tab closer to the
> front, maybe after Features?
>
> If it were me I would even move your Examples
Thanks for the speedy & thoughtful reply! This helps me quite a
bit
best-
Peter Keane
On Oct 10, 1:01 pm, "Michael Geary" <[EMAIL PROTECTED]> wrote:
> Your raw JavaScript code has a lot of optimization that is missing in your
> jQuery version. In the raw version, you cache the results of th
I may be wrong on this but I think it should be:
f...n findHeight elem, bottomPad
var height = 0;
var windowHeight = $(window).height();
var elemOffset = $(elem).offset();
var elementTop = elemOffset.top;// <- you
stick .top on the end instead of ['top']
hi karl,
everything works fine here on winxp SP2 with firefox 2007
only one issues: examples page: the round corner examples do not work.
great plugin, one of my all time fav!
cheers,
Alexandre
_
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Karl Swe
2007/10/10, Dan G. Switzer, II <[EMAIL PROTECTED]>:
>
> >> Actually if you use the 403 - Forbidden HTTP response status code, then
> >it
> >> should trigger the ajaxError() event:
> >>
> >> http://docs.jquery.com/Ajax/ajaxError#callback
> >>
> >> This means you could really easily add a check to s
>> Actually if you use the 403 - Forbidden HTTP response status code, then
>it
>> should trigger the ajaxError() event:
>>
>> http://docs.jquery.com/Ajax/ajaxError#callback
>>
>> This means you could really easily add a check to see if the status code
>is
>> 403 and then handle things appropriatel
> Robert,
>
> >> I already blogged about 2 straightforward approaches:
> >> http://blog.pengoworks.com/blogger/index.cfm?action=blog:605
> >>
> >> And example code:
> >> http://www.pengoworks.com/workshop/jquery/session_expired_example.cfm
> >>
> >> All of this is pretty easy to integrate into you
It's all clear to me, Karl. may be just an example of some too focused
on the word "demos" and not considering the similarity of "examples". :o)
Rick
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Karl Swedberg
Sent: Wednesday, October 10, 2007 2:24 PM
To: jquery-
I haven't seen anyone post a patch for jCarousellite yet, so if anyone
is trying to get it to work with jQuery 1.2.0 the fixes are simple and
you can use the patch below. I've also posted the patch on the
author's blog. The issue seems to be limited (as best I can tell) to
lt() and gt() instead
On Oct 10, 2007, at 2:54 PM, Chris Scott wrote:
Karl Swedberg wrote:
Hi Chris,
The docs are correct as of jQuery version 1.2. Previous versions
use @. Actually, you can get by using @ even in 1.2, but it's
deprecated.
Ever have one of those times when you *swore* you checked the
versio
Robert,
>> I already blogged about 2 straightforward approaches:
>> http://blog.pengoworks.com/blogger/index.cfm?action=blog:605
>>
>> And example code:
>> http://www.pengoworks.com/workshop/jquery/session_expired_example.cfm
>>
>> All of this is pretty easy to integrate into your site's JS frame
Karl Swedberg wrote:
Hi Chris,
The docs are correct as of jQuery version 1.2. Previous versions use @.
Actually, you can get by using @ even in 1.2, but it's deprecated.
Ever have one of those times when you *swore* you checked the version and
*swore* you double-checked your code? This was
>
> I already blogged about 2 straightforward approaches:
> http://blog.pengoworks.com/blogger/index.cfm?action=blog:605
>
> And example code:
> http://www.pengoworks.com/workshop/jquery/session_expired_example.cfm
>
> All of this is pretty easy to integrate into your site's JS framework so
> it's
Great work!!
Only recommendation would be to move your example tab closer to the
front, maybe after Features?
If it were me I would even move your Examples tab between the Intro
and Features tabs.
Awesome work!!
On Oct 10, 2:23 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> On Oct 10, 2007, at
Hi Chris,
The docs are correct as of jQuery version 1.2. Previous versions use
@. Actually, you can get by using @ even in 1.2, but it's deprecated.
--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Oct 10, 2007, at 1:44 PM, Chris Scott wrote:
In the
Alexander Graef schrieb:
I am using the validation plugin and I can not get multi-selects
working. As soon as I send the multi select as an array, validation
fails or does not trigger.
Can you give me an example for "multi select as an array"?
-- Jörn
Alexander Graef schrieb:
[...]
This is a wrong scenario, as normally each checkbox has its own unique name
within a form. The validation fails if the names are different for each
checkbox. How do I chain them for validation with each checkbox having its own
name ?
[...]
I have no idea how t
Thanks for the suggestion, Pyro. You're right about not being able to
link directly to the examples tab. I've been meaning to switch the
demo over to a "Mike Alsup template," but just haven't gotten to it
yet. Maybe this email will spur me to do it. :-)
--Karl
_
Karl Swedbe
That did it! Thanks!
On Oct 10, 10:55 am, Olaf Bosch <[EMAIL PROTECTED]> wrote:
> somnamblst schrieb:
>
> > I have a sliding ajax shelf that uses jquery slide. The shelf is below
> > another div and aesthetically needs to have 0 px between the 2 divs.
>
> > Perfection in IE, FF is about 3px highe
On Oct 10, 2007, at 10:48 AM, RichUncleSkeleton wrote:
I don't have a clue [geddit?] what the plugin is all about. That page
you posted (and no other pages on the site) actually say what it does.
And I don't see anything remotely like a 'demo'...
Huh?
Did you click on the "Features" link?
"T
Majid schrieb:
Last word, I know this looks like a tall order, and I do not hope
someone will make a complete working mod for me, but rather would very
much appreciate helpful advise and directions.
I've added your usecase to my autocomplete todo list. Its definitely
possible to support tha
Thank you, I will give that a try...
also, it has magicaly begun to work in IE cache issue?? don't
know.. I almost always ctrl-reload
On Oct 10, 11:09 am, Gordon <[EMAIL PROTECTED]> wrote:
> A bit of a stab in the dark I admit, but have you tried using .html()
> instead of .text()?
>
>
Your raw JavaScript code has a lot of optimization that is missing in your
jQuery version. In the raw version, you cache the results of the
document.getElementById calls. In the jQuery version, you don't do any of
that, and in fact you repeat the same jQuery selector calls twice each.
It any surp
Any one?
On 10/10/07, Mandy Singh <[EMAIL PROTECTED]> wrote:
>
> Hello,
>
> I am little new to jQuery so trying to get a hang of it.
>
> I am using the jCarousel Lite plugin for something today and I found it to
> be brilliant.
>
> I only have one problem - so suppose 10 nodes are there in the scr
I´m trying customize my alert and confirm dialogs, but the confirm
dont have the same behavior like your original, like pausing the load
of document until answer it. Has someone who now how i can get this
behavior??
For while i´m using the exemplo of jqModal site
function confirm(msg, callback)
In the attribute selector docs (http://docs.jquery.com/Selectors) it looks like
all the selectors are missing an @ before the attribute.
e.g. [attribute^=value] should be [EMAIL PROTECTED]
At least this is what I found to work after beating my head against a selector
for about 20 minutes. :
It's easy to test (I just did so in IE7). More difficult than when
able to use FireBug, but we get by. ;-)
Browse to http://plugins.learningjquery.com/cluetip/demo/ and click on
the "Examples" tab. (Sorry don't know how to link directly to
Examples--or if it is even possible.) Once you're loo
The best woud be if you could just have a look at this site I'm
currently developping.
http://maroc.visages-trekking.com/beta/randonnee-ski-rando.php
access with login 'zorba' / password 'kazantzakis'
As you see there is a list of items into tabs, each item linking to a
'product' page wich also
Hello,
I send an request to a php file on the server:
$(document).ready(function(){
updatePresenceBox();
setTimeout("updatePresenceBox()", 3000);
setTimeout("updatePresenceBox()", 6000);
});
function updatePresenceBox() {
$.ajax({
url: "test.php",
dataType: "html
Hi all,
I had a similar problem where fadeIn() and fadeOut() was just not
working for me but I found a solution.
This may not work for you but I got it to work by simply replacing my
fadeIn() and fadeOut() with these calls:
{your jQuery obj}.fadeTo("fast",0);
...blah blah
{your jQuery obj}.fadeT
Karl et al,
I just tried to link directly to the examples tab of the demo page for
ClueTip. Unless there's a trick that I don't know about (and please
educate me, if that's the case!), there's no way to do that.
May I suggest using location.hash in demo.js to see if it matches any
of the hrefs
Let's say I have 10 icons on a web page. Clicking an icon will change
it from it's colored version to it's gray scale version. Changing
flag states if you will. Lets say, just for example, it takes 3 - 5
seconds for the icon to change because it has to wait on the server to
process the request an
First, let me say thank you to Joel for making the new CSS for
Superfish so easy to configure now! All those comments make such the
difference!
and Second, here's my dilema:
We have a site, first thing that loads is a lovely flash movie which
resides in the main container below the horizontal na
Hi folks-
I am getting some troublesome benchmarks on a bit of code and I wonder
if I am missing something. I am iterating over a JSON object to
dynamically create a menu. The jQuery code consistently takes over
5000 milliseconds (!) to complete and my raw javascript version
consistently takes
I have two boxes, a yellow one and a blue one, and I want to animate
them at separate intervals.
This is an example of what I would like to happen:
1. Loading page complete
2. Yellow div box fades to zero opacity.
3. Wait 2 seconds
4. Blue div box moves left to right 100 pixels.
I can get them
Is it possible to detect the 'child number' of an element on click?
For example, say I have a table with 10 rows. If I click on the 7th
row, is it possible to obtain the number 7 simply? Currently I have a
click event attached to every table row, with something along the
lines of:
$('table#id tr
This is a follow up to
http://groups.google.com/group/jquery-en/browse_frm/thread/fcbb53bd33b30f96/6363fa2f4b444823
but since that post is over a year old comments are closed.
I have been looking at some RPC and REST systems lately and they all
recommend using the HTTP ACCEPT header. I would l
I don't have a clue [geddit?] what the plugin is all about. That page
you posted (and no other pages on the site) actually say what it does.
And I don't see anything remotely like a 'demo'...
--
Scott.
On Oct 10, 10:29 am, "Rick Faircloth" <[EMAIL PROTECTED]>
wrote:
> Just wanted to say that I
Nice job on the site with just a quick look I only noticed one major
error with FF2.0.7; I was able to submit the form without filling it
out.
Spills
jqModal seemed to be the best answer for our needs--the "window" overlay can
be moved, resized, and remote content loaded.
However, it can't load remote server content into an iFrame--something AJAX
can't do due to security restrictions. A
http://www.nabble.com/forum/ViewPost.jtp?post=9789846&f
Aha! placing var upd; outside of the keyup function did the trick! I always
get tripped up on scope issues like this...
I'll look to your expire plugin for future use... for now, this gets me over
the hump. Thanks, Michael!
SEAN O
Michael Geary wrote:
>
>
> The "delete" wouldn'
Of course, this code doesn't have any reason to be a jQuery plugin at all.
It could just be:
function expire( callback, interval ) {
var timer;
return function() {
clearTimeout( timer );
timer = setTimeout( callback, interval );
};
}
with t
Hi Joel,
The bgiframe plugin (http://jquery.com/plugins/project/bgiframe)
should work with the clueTip plugin. Some tooltip plugins work by
creating a separate tooltip for each invoking element - sometimes on
the fly. Others, like clueTip, create a single tooltip and hide/show
it, replaci
How about something like (not tested):
myNamespace = {
timer:null,
keyup:function(jqObj){
clearTimeout( myNamespace.timer );
myNamespace.timer = setTimeout(function(){
myNamespace.updateField(jqObj);
}, 6000);
},
updateField:function(jqObj){
// save using jqObj.val();
})
The "delete" wouldn't work, Andy - Sean's "upd" variable goes out of scope
immediately, and you need to use clearTimeout, not just delete the variable.
Sean, you can change your code to:
var upd;
$("input").keyup(function(){
var self = this;
clearT
Thanks for the suggestion, but I tried delete upd; before, after, even inside
my upd = setTimeout... function, and nothing happened -- the behavior is
still the same.
SEAN
Andy Matthews-4 wrote:
>
>
> Since you're setting the value of upd to a function containing the
> setTimeout, you shoul
Since you're setting the value of upd to a function containing the
setTimeout, you should be able to just
delete upd;
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Sean O
Sent: Wednesday, October 10, 2007 10:39 AM
To: jquery-en@googlegroups.co
Question I didn't see answered on the clueTip site: do clueTips
have a problem when appearing on top of form elements (particularly
select drop-downs) in IE 6?
The Interface tooltips I'm using seem to appear "behind" certain
form elements in IE, and the workaround suggested on this list for
Hi,
I'm trying to implement an autoSave function on my web application.
Something that automatically saves the contents of the current field 6
seconds after the last keyUp. It works, but I can't clear the multiple
setTimeouts triggered on each keyUp event.
Example:
$("input").keyup(fu
Hi robing,
I'm not perfectly clear on what you want to do, but might want to try
changing these lines:
$('#image_folder_button').click(function(){
$('.image_folder_dropdown').toggle();
})
to this:
$('#image_folder_butto
A bit of a stab in the dark I admit, but have you tried using .html()
instead of .text()?
On Oct 10, 12:19 pm, Danjojo <[EMAIL PROTECTED]> wrote:
> Any ideas how to update the following Jquery code to work in IE?
> It works in Firefox... Opera.. and not in Safari for window.. (so it
> works in
Hey Rick,
Thanks a lot! Wow, that totally made my day.
I'm just about ready to post another revision to the plugin's project
page and write up a little blog entry on it. I've received excellent
feedback from a lot of people and have tried to incorporate as many
of their requests. Special t
somnamblst schrieb:
I have a sliding ajax shelf that uses jquery slide. The shelf is below
another div and aesthetically needs to have 0 px between the 2 divs.
Perfection in IE, FF is about 3px higher
Contains your DIV a image?
Then set this IMG to display:block;
--
Viele Grüße, Olaf
1 - 100 of 144 matches
Mail list logo