[jQuery] Re: Validate Input of type File

2008-09-08 Thread shapper
Please, anyone? Thanks, Miguel On Sep 7, 10:57 pm, shapper [EMAIL PROTECTED] wrote: Hi, I tried and it is working ... well kind of. I am using FileStyle JQuery plugin to style the file input:http://www.appelsiini.net/projects/filestyle So the generated code (note the error message that

[jQuery] Re: New Website in IE7

2008-09-08 Thread SiCo
By the way it's IE 7.0.6001.18000 if that makes any difference. Simon On Sep 8, 8:59 am, SiCo [EMAIL PROTECTED] wrote: Yes but more specifically any page other than the home page. This is the docs page as rendered in my IE7 on Vista: See:http://www.sico.co.uk/stuff/jquery-website-docs.jpg

[jQuery] Re: New Website in IE7

2008-09-08 Thread SiCo
Yes but more specifically any page other than the home page. This is the docs page as rendered in my IE7 on Vista: See: http://www.sico.co.uk/stuff/jquery-website-docs.jpg This happens to the blog and most other pages on the site. Simon On Sep 4, 1:21 pm, MorningZ [EMAIL PROTECTED] wrote:

[jQuery] Re: Superfish

2008-09-08 Thread ric
TEST On 6 Sep., 04:11, Joel Birch [EMAIL PROTECTED] wrote: Hi Erick, To reduce the height of the menu, simply reduce the amount of top and bottom padding on the anchor elements. Your text colour problem is a little more complicated to do cross-browser as the CSS cascade makes things

[jQuery] Re: $.ajax() timeout

2008-09-08 Thread pcdinh
Hi Josh, It is not JQuery style. JQuery allows you to handle timeout event by implementing error() callback like this jQuery.ajax({ beforeSend: function(xhr) { // do something such as: set headers }, type: GET, timeout: 5000, url:

[jQuery] Re: Superfish

2008-09-08 Thread ric
hi joel, first of all .. thank you very much for your replay :-) i changed the css with your solutions but still have problems with the display of the first menu item when hovering over a submenu. unfortunately i am not the big css master, so i do have enormous problems where to fix it. also i

[jQuery] Finding elements with some ID

2008-09-08 Thread Olivier
How to find the elements with the id beginning by myID_ and terminated with any number like myID_25789.

[jQuery] Re: How to prevent multiple click sound in IE 6 using jQuery History plugin

2008-09-08 Thread Rob Anderson
Hi Klaus, thanks for replying and pointing out this option. Yes, it would be nice to lose the sound and keep the navigation! Hopefully there may be another way out there :) On Sep 8, 3:12 am, Klaus Hartl [EMAIL PROTECTED] wrote: Although there's a way to supress that sound:

[jQuery] display more than 3 images with thickbox and autoscroll?

2008-09-08 Thread [EMAIL PROTECTED]
hey guys, I been braking my brains for hours trying to figure this one out. I figure how to input images into the jcarousel and to link them to a bigger size one that would display in thickbox. using the thickbox sample... anyways I cant figure out how to make the jcarousel to display more than 3

[jQuery] How to load JQuery Cycle script first/quicker?

2008-09-08 Thread Jotun
I have made a website (www.outback-encounter.com) where I am using the JQuery cycle code for the rotating images in the header, and the problem is that the images load first and fill up the screen before the javascript function loads which then puts them all together into the slideshow header.

[jQuery] Re: Determine if a Javascript has loaded?

2008-09-08 Thread bcbounders
Mike, Thanks for all of the great explanations. I knew there was probably something severely wrong with my approach to determining if the widget had loaded, but now I think I actually understand some of the WHY. As far as what not loaded successfully means... the iBegin site (the source of the

[jQuery] Re: Superfish Current menu not displaying...

2008-09-08 Thread trackpad
I've made another pass at it. http://isitsf.com/test/sfish/ For reference, you can see the original here: http://isitsf.com/test/sfish/original/ I currently am facing two problems. One of them is general IE6 compatibility. I am at a loss as to why it's not working out there right now - but

[jQuery] Re: Determine if a Javascript has loaded?

2008-09-08 Thread bcbounders
Brad, Interesting approach... I like it! Now I'll see if I can get this to work on the site... like replacing the missing widget with a static image or something... so the page doesn't have a gaping hole where the weather's supposed to be (which is what was happening when iBegin was down and

[jQuery] reading from HTML file...

2008-09-08 Thread Zain Shaikh
hie everybbody, can any one tell me how do i read from HTML file using ajax or JQuery,,,. I have to use this in ASP.NET but i do not want to use Server side, that is why wished to use JQuery but i even do not know about the function which is to be used, can you please help em out, and tell the

[jQuery] Re: How to load JQuery Cycle script first/quicker?

2008-09-08 Thread Mike Alsup
I have made a website (www.outback-encounter.com) where I am using the JQuery cycle code for the rotating images in the header, and the problem is that the images load first and fill up the screen before the javascript function loads which then puts them all together into the slideshow

[jQuery] Re: How to load JQuery Cycle script first/quicker?

2008-09-08 Thread Mike Alsup
I tried the css code with no change, here is the result and perhaps you can say if there is something not implemented as described above: Your css is a bit off. #slideshow is your container, not #top_area. Your slides are the images with #slideshow, not the .pics class. Try the following:

[jQuery] Re: Tabs ui links

2008-09-08 Thread Klaus Hartl
No problem - that happens quite a lot. I've no problem with being mistaken with Karl, the jQuery Karl, hehe ;-) --Klaus On Sep 8, 1:20 pm, Daniel Beard [EMAIL PROTECTED] wrote: Sorry, I meant Klaus! I get called David a lot Daniel On 7 sep, 11:22, Klaus Hartl [EMAIL PROTECTED]

[jQuery] Re: reading from HTML file...

2008-09-08 Thread Jörn Zaefferer
Check out the load method: http://docs.jquery.com/Ajax/load#urldatacallback The example there doesn't work, but usually all you do is select a container and load a URL: $(#container).load(somefile.html); Jörn On Mon, Sep 8, 2008 at 8:31 AM, Zain Shaikh [EMAIL PROTECTED] wrote: hie everybbody,

[jQuery] using an external parser with MarkItUp

2008-09-08 Thread Richard Dyce
Hi, Not sure if this is the right place to ask, but here goes nothing. I have a small php/jQuery framework in which I would like to use the seemingly excellent MarkItUp tool. The users want to use MarkDown as their content markup language, and I would like to oblige - but the

[jQuery] Re: Get ID from HTML variable

2008-09-08 Thread Cristiano
Perfect Mike!!! Thank you! On 7 set, 23:10, Michael Geary [EMAIL PROTECTED] wrote: Cristiano, try this: var data = 'htmlbodytabletrtddiv.../divdiv id=myDivmore html here/div/td/tr/table/body/html'; var html = $(data).find('#myDiv').html(); alert( html );  // alerts 'more html here'

[jQuery] Re: Finding elements with some ID

2008-09-08 Thread Ca-Phun Ung
Olivier wrote: How to find the elements with the id beginning by myID_ and terminated with any number like myID_25789. Try this: $('*[id^=myID_]').filter(function(){ return (/\_[0-9]+$/).test($(this).attr('id')); });

[jQuery] Disappearing accordion elements

2008-09-08 Thread Bruce MacKay
Hi folks, I'm having trouble with lower elements (correct usage of the term???) of disappearing under the footer div of my page. A test page is here: http://www.watereducationalliance.net/technology.asp (click on key info) In both IE7 and FF3, the lower two items of the accordion are not

[jQuery] Re: Finding elements with some ID

2008-09-08 Thread [EMAIL PROTECTED]
if you have div`s then, $('div[id^=myID_]') On 8 сент, 13:15, Olivier [EMAIL PROTECTED] wrote: How to find the elements with the id beginning by myID_ and terminated with any number like myID_25789.

[jQuery] Re: New Website in IE7

2008-09-08 Thread MorningZ
That screenshot to me looks like your IE isn't properly loading the external CSS needed perhaps clear out your temp files and try again Screenshot of what i see (and it's all good) http://i34.tinypic.com/2573a4p.jpg

[jQuery] Re: Finding elements with some ID

2008-09-08 Thread MorningZ
Docs: http://docs.jquery.com/ Selectors: http://docs.jquery.com/Selectors Attributes filters http://docs.jquery.com/Selectors/attributeStartsWith#attributevalue

[jQuery] first day in week - datepicker

2008-09-08 Thread Lukas Polak
Hello, i need help. I 'm trying what fatepicker can do and I want change the day, when week starts in calendar. I want monday to be first day in week, but I really don't know hwo to do that. Do you have any ideas? elf

[jQuery] Re: Tabs ui links

2008-09-08 Thread Daniel Beard
Sorry, I meant Klaus! I get called David a lot Daniel On 7 sep, 11:22, Klaus Hartl [EMAIL PROTECTED] wrote: You need to ajaxify those links after the content has been loaded: $(function() { $('#example').tabs({ load: function(e, ui) { $('a',

[jQuery] Re: shadowbox resize iframe after content loads

2008-09-08 Thread Gordon
That's basically what I've been experimenting with in the FireBug console, it results in a permission denied error being logged to the console. On Sep 5, 1:15 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I have just googled around for some time and found this in the jquery

[jQuery] UI Datepicker change class on callback

2008-09-08 Thread Daniel Beard
Hi everyone, I am using the great UI Datepicker plugin to manage a property rental website. Using the National days technique, I am able to parse data from an XML file and show the days that the property is not available in red. So far so good, but I also need to allow the owners to change

[jQuery] Re: How to load JQuery Cycle script first/quicker?

2008-09-08 Thread Jotun
I tried the css code with no change, here is the result and perhaps you can say if there is something not implemented as described above: Web page code (from PHP page): div id=top_area div id=slideshow class=pics align=center ?php for ($counter = 0; $counter $images_count;

[jQuery] How to use jGrowl's theme option?

2008-09-08 Thread Wolfram Rösler
Hello, does anyone have an example how to use jGrowl's theme option? I want to use display error messages in red and tried the following: $.jGrowl('My error message',{theme: 'jgError'}); with the following in my css file: .jgError { color: red; } but it didn't work. I am obviously doing

[jQuery] Re: Finding elements with some ID

2008-09-08 Thread Olivier
On 8 sep, 13:18, Ca-Phun Ung [EMAIL PROTECTED] wrote: Olivier wrote: How to find the elements with the id beginning by myID_ and terminated with any number like myID_25789. Try this: $('*[id^=myID_]').filter(function(){   return (/\_[0-9]+$/).test($(this).attr('id')); }); Thak

[jQuery] Re: first day in week - datepicker

2008-09-08 Thread [EMAIL PROTECTED]
Try this: $.datepicker.setDefaults( { firstDay: 1 } ); I haven't test it... default value: firstDay: 0 // 0 == sunday; 6 == saturday On 8 Sep., 13:46, Lukas Polak [EMAIL PROTECTED] wrote: Hello, i need help. I 'm trying what fatepicker can do and I want change the day, when week starts in

[jQuery] Re: How to load JQuery Cycle script first/quicker?

2008-09-08 Thread Jotun
Thanks for your corrections, it made a difference but sometimes one of the images is showing out on the right side instead of below as before. I removed the css entries that were in the wrong place and added your css instead. Please try it our and see if you notice it. Thanks again!

[jQuery] Re: Tabs ui links

2008-09-08 Thread Daniel Beard
Thank you very much Karl, that worked perfectly! Daniel On 7 sep, 11:22, Klaus Hartl [EMAIL PROTECTED] wrote: You need to ajaxify those links after the content has been loaded: $(function() { $('#example').tabs({ load: function(e, ui) { $('a',

[jQuery] Fwd: Dialog

2008-09-08 Thread Brad M
Hi, I'm just learning how to use jquery and really like the Modal Dialog with Overlay widget. ( http://dev.jquery.com/view/trunk/ui/demos/functional/#ui.dialog) I'm having problems getting it to work though, and am unsure what I'm doing wrong. I want a dialog box with a form in it to pop up

[jQuery] Re: Disappearing accordion elements

2008-09-08 Thread [EMAIL PROTECTED]
Your #footer has an padding-top of 25px so you have to set the margin- bottom of the div#ui-tabs-4 to 25px or just remove the position:absolute style in your #footer. On 8 Sep., 13:22, Bruce MacKay [EMAIL PROTECTED] wrote: Hi folks, I'm having trouble with lower elements (correct usage of the

[jQuery] Re: Validate Input of type File

2008-09-08 Thread shapper
I tried to add the following: errorPlacement: function(error, element) { if (element.is(input[type=file])) error.insertAfter(element.next()); else error.insertAfter(element); }, But still does not work. Could someone tell me how to solve this problem?

[jQuery] Using an external parser with MarkItUp

2008-09-08 Thread dickiedyce
Hi, Not sure if this is the right place to ask, but here goes nothing. I have a small php/jQuery framework in which I would like to use the seemingly excellent MarkItUp tool. The users want to use MarkDown as their content markup language, and I would like to oblige - but the documentation for

[jQuery] Re: shadowbox resize iframe after content loads

2008-09-08 Thread Karl Swedberg
Hi Gordon, Someone else can correct me if I'm wrong (please), but as I understand it, if the content within the iframe comes from a different domain, you won't be able to manipulate it via JavaScript. This is a cross- site security feature of JavaScript / browsers. --Karl

[jQuery] $(xx).load can't load css and js in html file on Chrome??

2008-09-08 Thread JOVE
Hi all, I use $(xx).load to load a html file that has its own css and js, on IE and Firefox, it work good, but on Google Chrome, it can't load css and js in the html file, how can I fix it? example: subpage.htm: html script type=text/javascript alert( Hello World ); /script style

[jQuery] Re: Superfish - display2 deep and have mouseover for anything deeper

2008-09-08 Thread Mike Henke
Thanks, the current class option is pretty cool and will be useful. Maybe this outline of the vertical navigation I am looking for will explain better. Level 1 and 2 always display. *level 1 **level 2 ***(hidden till mouseover of level 2) level 3 ***(hidden till mouseover of level 2) level

[jQuery] $(xx).load can't load css and js in html file on Chrome??

2008-09-08 Thread JOVE
Hello all, I use $(xx).load to load a html file that has its own css and js, on IE and Firefox, it works fine, but on Google's Chrome, I found that it can't load css and js in the html file. how can I fix it ? subpage.htm: style type=text/css . /style div/div in IE and Firefox:

[jQuery] Tabs and focus() input-Elements issue

2008-09-08 Thread qt
Hi list We use Klaus Hartls' Tabs in a company intranet application. It's just awesome. But there is a little confusion about setting a focus on an input- field (ie. $('#myInput').focus() ). It works well when calling the Tab directly, but it would not focus when calling from the tab(s) itself.

[jQuery] Re: first day in week - datepicker

2008-09-08 Thread [EMAIL PROTECTED]
I have looked at the UI Functional Demos and found anotherway to do it: $(#datepicker).datepicker({ firstDay: 1 }); with my first solution all datepicker would start at monday and so only the #datepicker. On 8 Sep., 14:57, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Try this:

[jQuery] ZKOSS uses scriptaculous

2008-09-08 Thread Huub
We cannot include jquery.js in a ZK page, because of $ I deleted the $ = jQuery definitions and now ik can use jQuery in a ZK Page. I cannot use the minimized version though, because it's a bit encrypted Maybe leave this shortcut to the higher level, let applicationbuilders define $ to there

[jQuery] [validate] custom validation trigger

2008-09-08 Thread casavecchio
Hallo, i would like to validate a formfield. Valid values are 01, 02 31, like all possible days of a month. The field validation should start after blur (like default) and after the second sign was inserted(also in the first lazy-mode). When the values are valid, the next form field should

[jQuery] Re: ZKOSS uses scriptaculous

2008-09-08 Thread Alexandre Plennevaux
this should be useful for you: http://docs.jquery.com/Using_jQuery_with_Other_Libraries Alexandre Plennevaux LAb[au] http://www.lab-au.com On Mon, Sep 8, 2008 at 3:30 PM, Huub [EMAIL PROTECTED] wrote: We cannot include jquery.js in a ZK page, because of $ I deleted the $ = jQuery

[jQuery] Re: ZKOSS uses scriptaculous

2008-09-08 Thread MorningZ
Maybe leave this shortcut to the higher level, let applicationbuilders define $ to there liking And it is. by using noConflict http://docs.jquery.com/Using_jQuery_with_Other_Libraries include the jQuery file *first*, wire up the no conflict, then continue including other stuff

[jQuery] Re: [validate] custom validation trigger

2008-09-08 Thread Jörn Zaefferer
The plugin doesn't support customizing event in that manner. But you can always implement your own event handling, disabling the defaults if they interfere, and trigger validation manually. Something like this: $(#dayfield).keyup(function() { if (this.value.length = 2 $(this).valid()) {

[jQuery] How to select a specific descendant of curent object

2008-09-08 Thread Greeg
div id=box span class=child span class=grandchildhi grandma/span /span /div my question is how reach the .grandchild from .box? in theory, i can just use selector $(#box .grandchild) but this is not much handy when you already have selected the box object and pass it to some function

[jQuery] Re: ZKOSS uses scriptaculous

2008-09-08 Thread Huub
h:script src=../script/jquery.js /h:script h:script jQuery.noConflict(); alert(jQuery(#${search.uuid}).attr(value)) /h:script works great thanks. On Sep 8, 4:54 pm, MorningZ [EMAIL PROTECTED] wrote: Maybe leave this shortcut to the higher level, let applicationbuilders define $ to there

[jQuery] Re: selectors in $.post return with HTML context

2008-09-08 Thread [EMAIL PROTECTED]
Sure thing. Here is the whole ubiquity (http://labs.mozilla.com/2008/08/ introducing-ubiquity/) command in its current form. The relevant section is at the end. CmdUtils.CreateCommand({ name: tag-cloud, takes: {body_of_text: noun_arb_text}, description: Replaces selected text with a

[jQuery] Re: How to load JQuery Cycle script first/quicker?

2008-09-08 Thread Jotun
Actually it seems to be working after I modified your code slightly to this (added semicolons): #slideshow { position: relative; } #slideshow img { position: absolute; top:0; left:0; display:none; } #slideshow img:first-child { display:block; }

[jQuery] Re: addSlide with Next/Previous pagination using Cycle Plugin

2008-09-08 Thread Suhi
I just checked this out in ff and if you go 'next', it works, but if you click 'prev' and keep going backwards, you'll notice that you will have slides 1, 2, 1, 8, 7, 6, So clicking on either button does the adding of additional images, but they are only available after you clicked, hence if

[jQuery] Re: Superfish: onBeforeShow and onHide callback functions

2008-09-08 Thread BMCouto
Hi Joel, I'm using your last version of superfish but I'm having trouble closing the menu with the same effects. So right now to show it i have a slideDown and a fadeIn ({opacity:'show',height:'show'}), and I want to close it with a slideUp and a fadeOut... I've tried in many ways but it seems

[jQuery] Re: $(xx).load can't load css and js in html file on Chrome??

2008-09-08 Thread Andy Matthews
What's the actual code? I'm assuming you're not actually using 'xx' as your selector because that would never work. That format is reserved for accesing a specific tag. If you want to access a class, or id, then you'd need to prepend the 'xx' with either a . for a class, or # for an id.

[jQuery] Re: shadowbox resize iframe after content loads

2008-09-08 Thread Gordon
That's what I feared, but I was hoping there was a way around it. On Sep 8, 2:18 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Hi Gordon, Someone else can correct me if I'm wrong (please), but as I understand   it, if the content within the iframe comes from a different domain,   you won't be

[jQuery] Re: [validate] custom validation trigger

2008-09-08 Thread casavecchio
Hy Jörn, thx for the unbelieveble fast reply. I just wrote kind of oldstyle js-function, doing the same. And the blur of that function triggered validation, too. Didn't thought, it could be so easy. But your solution is much more elegant. Boris On 8 Sep., 17:07, Jörn Zaefferer [EMAIL PROTECTED]

[jQuery] [tooltip] Does not show up in IE

2008-09-08 Thread portsnap
Hello, I'm struggling with the latest version of tooltip, i can't get it working in IE. Tho it's showing up perfectly in Opera and FF. This is the code: $(option).livequery(function(){ $(this).each(function(i){ var str = $(this).text(); if (str.length 20) {

[jQuery] Help please on Using ajax url as ID

2008-09-08 Thread jeremyBass
Hello, I'm sure this is an easy thing but I'm just not finding what i need to fix and understand this Could some one help me fix this ... $.ajax({ url: test.html, cache: false, success: function(html){ $(body).append('div class=resizable style=background- color:#FF;div

[jQuery] Selecting a checkbox by clicking anywhere on a row

2008-09-08 Thread Michael Smith
Hi there, I'm trying to make a page which automatically toggles a checkbox when you click anywhere on the row. Here's a version I've cut down to the bare bones to illustrate http://dev.savingforchildren.co.uk/mjs/row_select.epl It seems to work fine unless the user actually clicks on the

[jQuery] Re: fastfind menu question

2008-09-08 Thread roelof
Really no-one who is willing to help me. Roelof On 7 sep, 11:52, roelof [EMAIL PROTECTED] wrote: Nobody who have a example for me ? Roelof On 6 sep, 19:04, roelof [EMAIL PROTECTED] wrote: Hello, For mij website i like to use this script. But i can't find how to implement this.

[jQuery] passing data between draggables droppables

2008-09-08 Thread jonsky
Hi all, i need some help from the gurus, so i'm asking here ;-) first of all description of the elements in the page: 1. i have div initialized as draggable like this .draggable({ containment: 'document', opacity: '50',

[jQuery] Re: $(xx).load can't load css and js in html file on Chrome??

2008-09-08 Thread Jove
I' sorry, xx just a example, in actually I'm using $ (#content).load(), but the point of this topic is about .load() on Chrome.

[jQuery] Re: How to select a specific descendant of curent object

2008-09-08 Thread Ca-Phun Ung
$('#box').find('.grandchild'); Greeg wrote: div id=box span class=child span class=grandchildhi grandma/span /span /div my question is how reach the .grandchild from .box? in theory, i can just use selector $(#box .grandchild) but this is not much handy when you already have

[jQuery] Re: $(xx).load can't load css and js in html file on Chrome??

2008-09-08 Thread Andy Matthews
Gotcha. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jove Sent: Monday, September 08, 2008 10:41 AM To: jQuery (English) Subject: [jQuery] Re: $(xx).load can't load css and js in html file on Chrome?? I' sorry, xx just a example, in

[jQuery] autocomplete questions

2008-09-08 Thread Shelane
Just a couple of things that I would like to know if it's possible: Can you submit additional parameters based on the value of another input field? Can you return all autocomplete results on the focus of the field? More info and a test page are available here: http://education.llnl.gov/test/

[jQuery] Re: New jQuery Website...

2008-09-08 Thread John Resig
It was launched the Friday before last. You can thank Scott Jehl for all the hard work he did! --John On Mon, Sep 8, 2008 at 12:58 PM, Chris Jordan [EMAIL PROTECTED] wrote: I really like the look of the new jQuery website. When did it get launched? My hats off to the designers! It looks

[jQuery] Re: New jQuery Website...

2008-09-08 Thread Rick Faircloth
Yes, it does look great! Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Jordan Sent: Monday, September 08, 2008 12:58 PM To: jQuery Group Subject: [jQuery] New jQuery Website... I really like the look of the new jQuery website. When did it get

[jQuery] New jQuery Website...

2008-09-08 Thread Chris Jordan
I really like the look of the new jQuery website. When did it get launched? My hats off to the designers! It looks fantastic!! :o) Chris -- http://cjordan.us

[jQuery] IE 6 error message

2008-09-08 Thread Shelane
I'm getting an error message on IE 6 for my selectCombo plugin. However, the message is so not helpful. Does anyone else have experience with this error message: Could not set the selected property. Unspecified error here is the code in question:

[jQuery] Help with ajaxForm in tabs, file uploads fail with strange error

2008-09-08 Thread Giovanni Battista Lenoci
Hi, I'm going crazy with file upload ans ajaxform when the file field is in a tab. When I click on submit button I got this error in firefox console: form.submit is not a function (?)()()jquery.form.js (riga 223) [Break on this error] form.submit(); I've put a sample page here:

[jQuery] Re: Determine if a Javascript has loaded?

2008-09-08 Thread Michael Geary
Brad has a great idea there. To really protect your page, you need to take one more step. (I assume you have other content on the page, right?) If ibegin.com is down in a way that results in a slow timeout instead of an immediate unavailable response, it will delay loading the rest of your page

[jQuery] fixing a few append items

2008-09-08 Thread jeremyBass
Hello, it's hard to tell if i made a mistake in post so if there is a double I'm sorry... anyways... I'm trying to get this script to work... script type=text/javascript $(function(){ $.ajax({ url: test.html, cache: false, success:

[jQuery] Re: fastfind menu question

2008-09-08 Thread jeremyBass
Here you go... http://labs.activespotlight.net/jQuery/menu_demo.html hope that helps here... Have a great day jeremyBass On Sep 6, 10:04 am, roelof [EMAIL PROTECTED] wrote: Hello, For mij website i like to use this script. But i can't find how to implement this. Can someone tell me that,

[jQuery] Re: New jQuery Website...

2008-09-08 Thread jeremyBass
I don't know if this is just me but the site is all kinds of broken... I'mean in almost everywere... this is 2 IE7's and 1 IE6's on 3 pcs... I'd give a url but ... well it's almost everywhere... cool idea though... On Sep 8, 10:03 am, Rick Faircloth [EMAIL PROTECTED] wrote: Yes, it does look

[jQuery] Redirect interupts ajax call

2008-09-08 Thread Mark Steudel
I have the below code, and it works, until I put the js redirect in. Why is this happening? I thought the, function gets called after a succesful ajax call ... anyway a bit of help would be greatly appreciated. $(document).ready(function(){ var url = '/scripts/orders.php'; var

[jQuery] Re: Help please on Using ajax url as ID

2008-09-08 Thread jeremyBass
Caught a few errors... current code... $(#replaceME).append('div style=width:100%; height:100%;'+ $AJAXCONTENT+'/div'); }); $.ajax({ url: test.html, cache: false, success: function(html){ $(body).append('div class=resizable style=background- color:#FF;div class=drag-handlespan

[jQuery] Re: jqModal and IE problems

2008-09-08 Thread Jayson89052
The issue is that you are using position: relative on one of the parent elements. Thanks, Jayson On Aug 30, 4:38 pm, MorningZ [EMAIL PROTECTED] wrote: hmmm.. missed that option and that did indeed fix my problem i do wonder why that option isn't true by default...  oh well, at least i

[jQuery] Validate and FileStyle problem. Could someone, please, help me out?

2008-09-08 Thread shapper
Hello, I am using JQuery Validate plugin to validate a input of type file. I am also styling the same input using FileStyle plugin: http://www.appelsiini.net/projects/filestyle The error message is added to the HTML markup but it is not visible. The generated HTML code is: label

[jQuery] Re: autocomplete questions

2008-09-08 Thread Shelane Enos
Yes, I saw that little enter then back space. That's horrible user interface to rely upon. Users wouldn't know that and I'd hate to tell them to do that. I'm not sure how I would accomplish your proposed work-around. On 9/8/08 10:24 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: For your

[jQuery] Re: Trying to fix jQeury

2008-09-08 Thread Michael Geary
Jeremy, this should help explain it: Why http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_wor king_after_an_AJAX_request.3F do my events stop working after an AJAX request? -Mike Hello, I tried to get this to work right... Have the first three(stactic)div's working

[jQuery] Re: autocomplete questions

2008-09-08 Thread MorningZ
For Can you submit additional parameters based on the value of another input field? http://docs.jquery.com/Plugins/Autocomplete#Dependencies_between_fields

[jQuery] Re: New jQuery Website...

2008-09-08 Thread Rick Faircloth
After my comment, I noticed the same thing as I drilled down into the site. The home page looks fine on IE 7, but I went to a tutorial page, and the page was somewhat garbled. Looks like the CSS layout could use some tweaking. Rick -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: autocomplete questions

2008-09-08 Thread Shelane Enos
This worked. Thanks. Now, if I can just get something for question 2 :-) On 9/8/08 10:45 AM, MorningZ [EMAIL PROTECTED] wrote: For Can you submit additional parameters based on the value of another input field? http://docs.jquery.com/Plugins/Autocomplete#Dependencies_between_fields

[jQuery] Re: $(xx).load can't load css and js in html file on Chrome??

2008-09-08 Thread Danny
According to the W3C standard, style elements can only go in the head. It's a dumb rule, but it's the rule. IE and Firefox are happy to put the style in the body, but Safari won't do it (it ignores styles when setting innerHTML) and I assume Chrome, which is based on WebKit, does the same. You

[jQuery] Re: Selecting a checkbox by clicking anywhere on a row

2008-09-08 Thread Danny
add return false; to your click handler to keep the click from getting to the checkbox itself. Danny On Sep 8, 10:55 am, Michael Smith [EMAIL PROTECTED] wrote: Hi there, I'm trying to make a page which automatically toggles a checkbox when you click anywhere on the row. Here's a version

[jQuery] [validate] delayed validation

2008-09-08 Thread Mike Nichols
Hi I have a text field which is evaluated on its onblur event and corrected by inserting the default year. So I might enter '0508' and it will convert to '05/08/2008' onblur. The validate plugin is evaluating the field's value before my plugin can change it so it says 'Please enter a valid

[jQuery] Re: Tabs and focus() input-Elements issue

2008-09-08 Thread Klaus Hartl
I don't understand yet. Can you explain the difference of calling the Tab directly and calling from the tab(s) itself, ideally with code samples? --Klaus On Sep 8, 4:34 pm, qt [EMAIL PROTECTED] wrote: Hi list We use Klaus Hartls' Tabs in a company intranet application. It's just awesome.

[jQuery] Re: autocomplete questions

2008-09-08 Thread MorningZ
For #2 perhaps the .search option will do the trick? http://docs.jquery.com/Plugins/Autocomplete/search perhaps wire that up to the focus event of the textbox

[jQuery] Re: autocomplete questions

2008-09-08 Thread Shelane Enos
Adding the following resulted in the search string being sent to the server, but the results weren't displayed (I can see the results with Firebug): $('#topic1').focus(function(){  $('#topic1').search(); }); On 9/8/08 11:59 AM, MorningZ [EMAIL PROTECTED] wrote: For #2 perhaps the

[jQuery] Re: How to select a specific descendant of curent object

2008-09-08 Thread Glen Lipka
Wouldnt this work too?$(#box .grandchild). Glen On Mon, Sep 8, 2008 at 8:27 AM, Ca-Phun Ung [EMAIL PROTECTED] wrote: $('#box').find('.grandchild'); Greeg wrote: div id=box span class=child span class=grandchildhi grandma/span /span /div my question is how reach the

[jQuery] Fire events programmatically

2008-09-08 Thread Huub
Sometimes it's needed to create an event programmatically. (Which is different from running an event function (triggering) This can be done by the following fire code var el=document.getElementById(ID1) fire(el,'change') function fire(evttype) { if (document.createEvent) {

[jQuery] making a advance image map....

2008-09-08 Thread Aaron
Hi I am trying to make a image map of the U.S I would like to know what's the best way to tackle this. I already have the image I am going to try and work with. I already made the html code of it. I would like to know if javascript can help me any to make a interactive map of the U.S I want

[jQuery] Re: Superfish: Gap between top level menu and popup..

2008-09-08 Thread Mike Henke
change the default .for the horizontal menu of sf-menu a { padding: . 75em 1em;} to .25em 1em and a gap will appear from the menu to where the drop down appears. I was implementing your comment about reducing the height of the menu by reducing the top and bottom padding on the anchor elements.

[jQuery] Re: Help please on Using ajax url as ID

2008-09-08 Thread micah
URLs contain characters that aren't allowed in IDs. the spec (http:// www.w3.org/TR/html401/types.html#type-name) says that IDs must use only a-Z, 0-9, _, : and . -micah On Sep 8, 9:11 am, jeremyBass [EMAIL PROTECTED] wrote: Caught a few errors... current code... $(#replaceME).append('div

[jQuery] Re: Determine if a Javascript has loaded?

2008-09-08 Thread bcbounders
Mike, WOW! Thanks so much! This is TOTALLY the kind of thing I was looking for. Thanks for taking the time to do such a thorough mock-up! You ROCK, dude! Thanks... can't wait to go try this out! - John On Sep 8, 10:18 am, Michael Geary [EMAIL PROTECTED] wrote: Brad has a great idea

[jQuery] Re: autocomplete questions

2008-09-08 Thread [EMAIL PROTECTED]
Sorry I wasn't very clear, I don't mean to have your users do that, I mean it gave you a clue how that function worked. You need to add an on-focus event to the field that then bubbles a key- up event that will trigger the autocomplete for the user.

[jQuery] Re: Selecting a checkbox by clicking anywhere on a row

2008-09-08 Thread FrenchiINLA
Try the following code: $('.myrow').children().click(function() { if ($(this).children('[EMAIL PROTECTED]').length == 0) { var check_id = '#' + $(this).parent().attr('id') + 'checkbox'; $(check_id).attr('checked', !$(check_id).attr('checked')); }

  1   2   >