[jQuery] Re: [validate] generated attribute

2008-09-18 Thread Jörn Zaefferer
What does invalid mean in that context? The attribute is added at runtime, so the w3c html validator will never see it. Jörn On Thu, Sep 18, 2008 at 12:25 AM, salac.r [EMAIL PROTECTED] wrote: Hi, I'm trying to use this plugin and it looks wonderfull. But i wonder if is necesary to use

[jQuery] Re: jQuery validation use different event for differernt input

2008-09-18 Thread Jörn Zaefferer
Disable the event handling and add manual validation to the username field: $(...).validate({ onkeyup: false, onfocusout: false }); $(#username).blur(function() { $(this).valid(); }); Jörn 2008/9/18 Jacky [EMAIL PROTECTED]: Hi all, Some question on the validation plugin. Say there are

[jQuery] Re: jquery.com incredibly slow for me

2008-09-18 Thread Mika Tuupola
On Sep 17, 2008, at 8:34 PM, acacio wrote: I had the same problem so I switched to the Google hosted files and it's *much* faster. AFAIK jquery.com provides files for downloading not hotlinking. So you should have used your own server to serve js in the first place. -- Mika Tuupola

[jQuery] simple test if all checked BEGINNER

2008-09-18 Thread tlob
Hello I sucessfully implemented a test to see if all checkboxes are checked: $(form#form1).submit(function() { var anzahl = $(#form1 input:checked).length; if (anzahl==7){$(#all).show(500);} return false; }); I think this can be done more elegant, because when the number

[jQuery] Re: simple test if all checked BEGINNER

2008-09-18 Thread Lukas Pitschl | Dressy Vagabonds
Hi Thomas, you could compare the count of all available checkboxes with all checked once. That would look something like this: $(form#form1).submit(function() { var total = $(#form1 [EMAIL PROTECTED]'checkbox']).size() var checked = $(#form1 [EMAIL

[jQuery] Re: simple test if all checked BEGINNER

2008-09-18 Thread tlob
Oh so easy! Thank you very much! I changed it a little bit: var total = $(#form1 :checkbox).size() var checked = $(#form1 :checkbox:checked).size() if(checked == total) $(#all).show(500); thx tom

[jQuery] Re: Finding DIVS with similar IDs

2008-09-18 Thread Alex Weber
$('div[id^=test]').hide(); :) if it doesnt work i think its just a case of syntax $([EMAIL PROTECTED]).hide(); On Sep 17, 9:14 pm, ripple [EMAIL PROTECTED] wrote: Try this.   $(div[id*=test]).hide();   The second attempt evaulates the text in the div. Not the id of the div.   ---

[jQuery] Re: best/standard way to benchmark your own scripts?

2008-09-18 Thread Alex Weber
thanks :) i use firebug but i wasnt aware of the profiling... :) On Sep 17, 8:20 pm, Ariel Flesler [EMAIL PROTECTED] wrote: I made my own benchmarker some time ago (3-4 months). It's not perfect but it did the job for me. You can check it here:http://benchmarker.flesler.com/ The deploy

[jQuery] find, not selector not working

2008-09-18 Thread vtjiles
I have the fairly simple markup below and am trying to only get only the checkboxes under the first level LI (Main 1 and Main 2), not the deeper ones. ul id=el li input type=checkbox value=1 / - Main 1 ul li

[jQuery] fadeTo animation repeats multiple times in Firefox...why?

2008-09-18 Thread alexcoleman
I'm attempting to work with the fadeTo command (also tried other animations like slideDown), but I keep getting repeat animations. Sometimes it'll cycle through 2 times, other times many more times. Here is the code I'm using: $(document).ready(function() { $('.featured').hover(function(){

[jQuery] Re: cascade question

2008-09-18 Thread kevin
hi ricardo, i tried this before, this only can set the first box. it won't trigger the second box to get data from database. second box still empty. i have added selected attribute on my sample page. http://sskes.damimi.org/test/ thanks anyway. On 9月18日, 上午6時32分, ricardobeat [EMAIL PROTECTED]

[jQuery] html for other examples (Bglframe, vertical style, nav-bar style and with Supersubs)

2008-09-18 Thread elvisparsley
I have downloaded the zip and found one example in it. I'd like to know how to make it other examples in the website. http://users.tpg.com.au/j_birch/plugins/superfish/#examples Could anyone tell me html code for other samples? thanks in advance.

[jQuery] Re: cascade question

2008-09-18 Thread kevin
Hi ricardo, i tried this before,but set option attribute can only let first box selected on B it won't trigger second box get data from database. second box won't change until you click on the first box and select other options all i want is first box selected on B and second box selected on B2

[jQuery] Re: JQuery - wrap() + Internet Explorer problem

2008-09-18 Thread weidc
ye your right, it works as long as i set the visibility to visible in IE itself. if i do that in my .html script it doesn't work. but i guess it's the same as when i right-click one of the picture and choose properties it works too. i noticed somehow the space between the picture's becomes

[jQuery] Re: Hover on all elements: $(*).hover(...)

2008-09-18 Thread John Boxall
Aaron, I had the same thought - when tried event.stopPropagation() it just kept on sailing right up (though I'd like to test this again). What I ended up with was a solution with a two global variables. var flip = True; var hover; function hoverIn(event) { if (flip) {

[jQuery] Re: this.style is null or not an object

2008-09-18 Thread kim
i didn't put a runat='server' attribute to the div element so when we do a viewsource the id is still 'showError' even if it's inside a contentplaceholder control. On Wed, Sep 17, 2008 at 9:42 PM, Eric Martin [EMAIL PROTECTED] wrote: It sounds like an issue with your page. Do you have any code

[jQuery] Re: this.style is null or not an object

2008-09-18 Thread kim
here's the page declaration: asp:Content ID=Content3 ContentPlaceHolderID=ContentPlaceHolder1 Runat=Server input type=button id=btnTest value=Test ExceptionHandler onclick=showError('Error Message') / div id='showError' style='display:none' a href='#' title='Close'

[jQuery] Re: PHP port of jQuery

2008-09-18 Thread Tobiasz Cudnik
New release 0.9.4 is available featuring Ajax, Events, WebBrowser plugin and client-side jQuery bindings. Check out release notes for more information: http://phpquery-library.blogspot.com/2008/09/phpquery-094-released.html On Jul 29, 1:51 pm, Tobiasz Cudnik [EMAIL PROTECTED] wrote: Hi, I

[jQuery] Re: this.style is null or not an object

2008-09-18 Thread kim
i just added tried out this jQuery code: alert(jQuery('#showError')); jQuery('#showError').hide(); the alert resulted to [object Object], but the call to hide resulted to the error this.display is null or not an object. i'm using IE7 by the way. On Wed, Sep 17, 2008 at 9:42 PM, Eric Martin

[jQuery] Re: nth-child(n) not working for me.

2008-09-18 Thread Richard D. Worth
On Wed, Sep 17, 2008 at 11:29 PM, Karl Swedberg [EMAIL PROTECTED]wrote: Hi kcharles, you need to concatenate the variable, n, with the rest of the selector expression. Otherwise, it's treated as the string, n. Try this: $(#filterTable tbody tr td:nth-child( + n + )).each(function(){ Also,

[jQuery] Re: add/removeClass problem

2008-09-18 Thread Richard D. Worth
Inside your click handler, 'this' is equal to the 'a' that has been clicked. The problem is when you do $('ul.tabNavigation a', this).removeClass('selected'); it means find me any anchors with ul.tabNavigation, but limit the query to the contents/context of the 'this' element. So it's actually

[jQuery] Re: find, not selector not working

2008-09-18 Thread Richard D. Worth
Try $(#el li input) The (rough equiv) long-hand for that would be $(#el).children(li).children(input) So the space ( ) in css is analogous to .find(), and the right-angled-bracket () to .children(). - Richard On Wed, Sep 17, 2008 at 11:56 PM, vtjiles [EMAIL PROTECTED] wrote: I have the

[jQuery] Re: Jcrop v0.9.0 image cropping plugin - comments please

2008-09-18 Thread Richard D. Worth
Yes, both do. JCrop has an aspectRatio option. You specify a decimal, or a ratio (16 / 9 for wide, or 1.0 for square). See http://deepliquid.com/content/Jcrop_Manual.html#Setting_Options jQuery UI Resizables has a similar option (same key - aspectRatio). If specified as a boolean/true it will

[jQuery] Re: hover() with mouseout() problem

2008-09-18 Thread weidc
i guess the submenu dissapears 'cause you leave the menu item and don't hover over it anymore. maybe use mouseover() and mouseout() like that: $(document).ready(function(){ $(#trzy).mouseover( function(){

[jQuery] Using .load and updating the DOM

2008-09-18 Thread Paul
Hi - I'm using .load to update a panel on a page when a user clicks to add an item to a list. The panel reloads ok, but next to the item in the list is a link to remove it - this is an a tag with a class; I have a function listening out for clicks on links with this class, but this doesn't work

[jQuery] selection element

2008-09-18 Thread Alper Hankendi
I have selection problem. When i call the function value isnt comming. How can i choose the title value from this array? HTML LI class=resourceListItem id=649459 title='=WTF=RvrvDH/k8XAVENVFZJ/ xoQKasfd/JsdfhJTVKVadsfASA=' LI class=resourceListItem id=649458 title='=WTF=RvrvDH/sdafasENVFZJ/

[jQuery] Re: getting/setting height() in IE6 quirks mode behaves inconsistently

2008-09-18 Thread Enrique Meléndez Estrada
Please, publish that fix as a jQuery function...thnxs! ;-) El 17/09/2008 19:26, Matt Kruse escribió: In IE6, quirks mode, I expect this to not change their height of an object: var h = $obj.height(); $obj.height(h); However, it does cause a re-size (if the object has padding/borders). Is

[jQuery] Re: this.style is null or not an object

2008-09-18 Thread MorningZ
the problem is you have a div tag with the id of showError and you also seemingly have an event called showError That's not good to have and is probably the source of your issue

[jQuery] Re: Finding DIVS with similar IDs

2008-09-18 Thread MorningZ
yeah, my mistake on my post, shouldn't have had # in it

[jQuery] about $(document).ready()

2008-09-18 Thread 立体风
Hello all, Why sometimes with time, and sometimes $(document).ready() with many times?

[jQuery] div.hover, only w/ background-settings in IE?

2008-09-18 Thread bnlps
hi, .. by using this snippet, everything works great in Firefox - you can move the mouse everywhere inside the red DIV border, and get out .. the fading effect always works correctly. but, in IE 6/7, .hover only seems to act when the mouse is AT the red border; well, if you set a

[jQuery] Re: [validate] Issues in IE6

2008-09-18 Thread Mattl
Thanks Jorn, however I'm still seeing the issue. Could someone check on their version of IE6? I get: Line 30 Char: 1 Error: Object doesn't support this property or method Code: 0 On Sep 17, 8:33 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: Works fine for me, even in IE6. Jörn On Tue,

[jQuery] Re: Using .load and updating the DOM

2008-09-18 Thread Paul
Ah, I've now discovered LiveQuery and it all makes sense. Sorry for wasting your time if you read this.

[jQuery] Re: get an image from an input field just with javascript

2008-09-18 Thread ^AndreA^
yeah, unfortunately you are both right... :-| In fact I was afraid to receive this answer... Anyway, how can I upload the image just with js and without submitting the form? jQuery standard function ($.ajax) does not seem to allow a file/image as a file type... I also looked to some plugins

[jQuery] Re: get an image from an input field just with javascript

2008-09-18 Thread ^AndreA^
yeah, unfortunately you are both right... :-| In fact I was afraid to receive this answer... Anyway, how can I upload the image just with js and without submitting the form? jQuery standard function ($.ajax) does not seem to allow a file/image as a file type... I also looked to some plugins

[jQuery] Re: jquery.com incredibly slow for me

2008-09-18 Thread Michael
On Wed, Sep 17, 2008 at 7:05 PM, John Resig [EMAIL PROTECTED] wrote: We just acquired four new servers from Media Temple, yesterday. We'll be moving the various sub-domains (docs, plugins, dev, ui) to their own unique servers this week - this should help with load times significantly. But

[jQuery] Re: get an image from an input field just with javascript

2008-09-18 Thread tlphipps
I've never done it, but I know of two scripts which support it: 1) http://www.phpletter.com/Demo/AjaxFileUpload-Demo/ 2) http://malsup.com/jquery/form/#code-samples (file uploads tab) On Sep 18, 7:22 am, ^AndreA^ [EMAIL PROTECTED] wrote: yeah, unfortunately you are both right... :-| In fact

[jQuery] Re: jquery.com incredibly slow for me

2008-09-18 Thread John Resig
AFAIK jquery.com provides files for downloading not hotlinking. So you should have used your own server to serve js in the first place. We provide code.jquery.com to hotlink to - that's perfectly ok. --John

[jQuery] Re: Selecting a nested Ajax Tab from a link

2008-09-18 Thread Klaus Hartl
That's trickier than usual because you have to wait for the first Ajax reponse to be completed (otherwise you would just select the proper tabs in sequence). Try: $('.buynow a').click(function() { $('#main ul'). bind('tabsload', function(e, ui) { $('ul.sub-ui-tabs-nav',

[jQuery] Re: best/standard way to benchmark your own scripts?

2008-09-18 Thread Ariel Flesler
While firebug's profile is ok... it inflates times quite a lot, prolly due to all the stuff it inserts around in your code. I compare FF w/FB vs FF w/o FB and the results were a lot different. I'd not recommend it for very specific tests. Also, some approaches can be faster on FF and slower on

[jQuery] Re: find, not selector not working

2008-09-18 Thread vtjiles
Thank you! Your code worked great and your explanation of the space and is just what was needed. Based on your explanation of , because there was no before the li, it was finding an li at any depth with an input child. By adding the at the begging it is now only looking for direct children of

[jQuery] jQuery.sheet, new layout, ThemeRoller integrated, what does everyone think?

2008-09-18 Thread K-BL
Hey Guys, I just released jQuery.sheet 0.3.0 and wanted to know what everyone thought about it. Check out documentation demo here: http://jqueryplugins.weebly.com/uploads/3/1/3/8/313814/jquery.sheet.html Check out home page here: http://jqueryplugins.weebly.com/ . With your help, we can make

[jQuery] Re: about $(document).ready()

2008-09-18 Thread ~flow
敬��原��但是文字上大概有�c儿不太清楚。 `$(document).ready(x)` [EMAIL PROTECTED] 如果document已��完成的�r候script�f`$(document).ready(x)`的��,那它的引��`x`立即被execute。 一个document ready的引��function可以有多少clauses,也可以在一个script�Y面define多少document ready,它��都�⒈��绦小� 例。$(document).ready(function(){alert('helo')}) 以上。 On

[jQuery] Superfish menu - flash of unstyled list before load

2008-09-18 Thread Terry.Morgan
Hi there, I've got a Superfish menu on a page I'm working on but I'm getting a flash of the unstyled list before the menu loads properly. This is slightly different to the fairly rare flash of unstyled content bug as the CSS backgrounds and other CSS are being loaded ok at the same time as the

[jQuery] Problem Firing AutoComplete in JQUERY

2008-09-18 Thread aimhier
Autocomplete is not fired for a textfield when the field is loaded using ajax but the is fired when the same field is loaded directly. Is there any issue that needs to be resolved regarding the same.

[jQuery] jTemplates and event handlers ?

2008-09-18 Thread websam
Hi there, I have created a table of data using jTemplates where I have my table template in a seperat .html file. I generate some links in the the table that i want to add a event handler to but i can't get it to work. What i do is using this code to add event handlers to all links with class

[jQuery] jTemplate and AJAX ?

2008-09-18 Thread websam
I have tested the use of jQuery, jTemplates and AJAX together with asp.net shown in this blog : http://encosia.com/2008/08/20/easily-build-powerful-client-side-ajax-paging-using-jquery/ And i got everything to work against my library of methods. However i need to set some event handlers to the

[jQuery] puzzling black hole in $(...).hasClass()?

2008-09-18 Thread ~flow
hi all, i’m doing this in ffx2 and firebug1.05; i have a local document loaded, go to the firebug console, and write $log( $Q( 'div' ).hasClass( '' ) ); $log( '###' ) to which firebug responds with true ### thereby showing bot commands did execute. now i repeat the experiment, but with

[jQuery] Re: jdmenu top level links disabled with submenus

2008-09-18 Thread dduck1934
Okay i saw there is a disableLink property in the jdmenu, and I am not sure how to call it. var settings = $.extend({ // Time in ms before menu shows showDelay: 200, // Time in ms before menu hides hideDelay: 500, // Should items that contain submenus not //

[jQuery] Re: jquery.com incredibly slow for me

2008-09-18 Thread William Chang
Same here, slowness and unresponsive been going on over a week. I reported on the jQuery Development mailing list: http://groups.google.com/group/jquery-dev/browse_thread/thread/5efcd4be97067ef Sincerely, Will On Sep 18, 8:40 am, Michael [EMAIL PROTECTED] wrote: On Wed, Sep 17, 2008 at 7:05

[jQuery] Re: nth-child(n) not working for me - I didn't see my previous post

2008-09-18 Thread kcharles
You rock! That was it. -Kevin

[jQuery] Re: Need some help with image map coding....

2008-09-18 Thread Aaron
well what can I do to use javascript to submit a name to my php code??? I want to use the image map as a gui so I want it to act just like a form where I can name each state and then pass that name using post method to my php script which will do a database lookup and then once the list is

[jQuery] Re: this.style is null or not an object

2008-09-18 Thread kim
ok, i had to make double checks and it's actually the when scriptaculous is used along side effects.js library. all these needed by lightbox. On Thu, Sep 18, 2008 at 9:07 PM, kim [EMAIL PROTECTED] wrote: i've found the cause of the error. seems like jquery doesn't work well with scriptaculous.

[jQuery] Re: Superfish navbar for Wordpress

2008-09-18 Thread kiper
Hi Joel! I am just happy if I can contribute to make Superfish even better! All the best, Müfit On Sep 18, 5:29 am, Joel Birch [EMAIL PROTECTED] wrote: Hi Müfit, Thanks for your well-articulated thoughts on this. I agree that being able to specify more that one pathClass would be very

[jQuery] Re: jquery.com incredibly slow for me

2008-09-18 Thread vld
I had looked for a long time for good off-line copy of jQuery docs. Not only for performance reasons - I do develop while commuting. So far, checking out and using http://jqueryjs.googlecode.com/svn/trunk/tools/api-browser meets my needs. The only thing I am not sure about is how up-to-date the

[jQuery] Re: Hover on all elements: $(*).hover(...)

2008-09-18 Thread [EMAIL PROTECTED]
Interesting. Does anyone know if event.stopPropagation() is broken, not implemented for the hover() anonymous functions, or we are using it wrong? On Sep 18, 12:26 am, John Boxall [EMAIL PROTECTED] wrote: Aaron, I had the same thought - when tried event.stopPropagation() it just kept on

[jQuery] Re: Hover on all elements: $(*).hover(...)

2008-09-18 Thread benjam
Nicely done Karl, I knew there was a better way. On Sep 17, 1:54 pm, Karl Swedberg [EMAIL PROTECTED] wrote: This one worked for me... $('body').bind('mouseover', function(event) {    $(event.target).addClass('selected');}).bind('mouseout', function(event) {    

[jQuery] Re: this.style is null or not an object

2008-09-18 Thread kim
i've found the cause of the error. seems like jquery doesn't work well with scriptaculous. we are using the lightbox library, and it requires scriptaculous. after excluding the scriptaculous library, my jquery code works! is this a known issue? thanks. On Thu, Sep 18, 2008 at 7:01 PM, MorningZ

[jQuery] jQuery.center Plugin

2008-09-18 Thread Mr Fett
Hi all, I'm trying to debug a plugin - I believe its a new plugin and has a bug as the behavior of it is incredibly inconsistent across browsers. The plugin is the jQuery.center - http://plugins.jquery.com/project/elementcenter. For reference I've put a basic example of my implementation of

[jQuery] Re: jQuery.center Plugin

2008-09-18 Thread Andy Matthews
Bob... Is there any reason why you're not doing this with pure CSS? You'd probably be done by now if you did. Here's a simple example: http://commadelimited.com/uploads/center.html As you can see, there's hardly anything to the CSS, and it's very simple to implement. andy -Original

[jQuery] Re: jquery.com incredibly slow for me

2008-09-18 Thread misterqj
Hi John, Since we are on the subject of resources... How is jquery funded/supported? Corporate sponsors, community support, pennies from heaven, change from your couch... Thanks for the info. On Sep 17, 12:05 pm, John Resig [EMAIL PROTECTED] wrote: We just acquired four new servers from

[jQuery] Double JQuery Connundrum

2008-09-18 Thread geme4472
Hi, I'm creating a widget that uses jquery. As you might imagine, it might load on a page already having jquery loaded. Is there a way to load two instances of jquery in a page? Perhaps some variation on noConflict()?

[jQuery] Re: Hover on all elements: $(*).hover(...)

2008-09-18 Thread John Boxall
Thanks a bunch Karl - I switched to your way much smoother : ) John On Sep 18, 6:54 am, benjam [EMAIL PROTECTED] wrote: Nicely done Karl, I knew there was a better way. On Sep 17, 1:54 pm, Karl Swedberg [EMAIL PROTECTED] wrote: This one worked for me... $('body').bind('mouseover',

[jQuery] Best JQuery pop-up plugin.

2008-09-18 Thread crypto5
Hi All, what is the best JQuery pop-up window plugin in your opinion? I am not strong experienced in JQuery and looking for such plugin but don't want test everything. So lloking for short cut. Thanks All! -- View this message in context:

[jQuery] Re: Best JQuery pop-up plugin.

2008-09-18 Thread MorningZ
I've had great luck/usage with jqModal (http://dev.iceburg.net/jquery/jqModal/) very configurable and easy to setup

[jQuery] Re: Best JQuery pop-up plugin.

2008-09-18 Thread GasGiant
Do any of them have a callback type of function for what to do on close? I'd like to use a modal form that updates the Ajax in the opener, but only when the modal get's closed. On Sep 18, 1:43 pm, MorningZ [EMAIL PROTECTED] wrote: I've had great luck/usage with jqModal

[jQuery] Re: Jcrop v0.9.0 image cropping plugin - comments please

2008-09-18 Thread Kelly
I wanted to use jQuery UI but the docs site was down :-) At the end of the day, I don't think potential consumers of plugin(s) should be too concerned whether there's an additional few KB of script loaded on a page which duplicates a functionality already available in another loaded library. Not

[jQuery] Re: Best JQuery pop-up plugin.

2008-09-18 Thread Josh Nathanson
jqModal does have a callback for that, but it gets pretty ugly if you're using the same modal window for different forms. Then you have to re-configure the jqModal settings on each modal request. What I've done is use a combination of the ajaxForm plugin and LiveQuery to listen for modal

[jQuery] Re: Double JQuery Connundrum

2008-09-18 Thread tlphipps
I'm no expert on jquery, but I would do the following: if (typeof(jQuery) != 'function') { //code to load jquery plugin here } On Sep 18, 11:57 am, geme4472 [EMAIL PROTECTED] wrote: Hi, I'm creating a widget that uses jquery.  As you might imagine, it might load on a page already having

[jQuery] Re: Problem Firing AutoComplete in JQUERY

2008-09-18 Thread MorningZ
If you look inside the js file, specifically at the $input.bind part around line 90, the code is looking for keypresses to fire it's events. you're not firing any of those with your ajax load of it so it would be like mis-use, not issue to describe your problem... perhaps trigger a

[jQuery] Passing values to functions

2008-09-18 Thread Barney
Hi, I am trying to get my head around jquery and am converting some standard javascript code over. My old code was setup like this: function deleteid(id){ // Delete by id } Then for html I have: a href=javascript:void(0); id=delete onClick=deleteid('{$entry.cID}') Now moving to jQuery I just

[jQuery] Xpath Plugin: Child Selector Predicate Support [\d+]

2008-09-18 Thread John Boxall
Hey Jquery hackers: I'm doing some work with the Xpath plugin and I notice it doesn't support expressions like: /html/body/center/form/table/tbody/tr/td[2]/input[3] (Used to select the search box on www.google.com!) I would like to extend the plugin to support this kind of expression. Because

[jQuery] Re: jTemplate and AJAX ?

2008-09-18 Thread Adam Guichard
I'm new at this as well, but I might be able to provide you some assistance if you clarify your question a little. What are you trying to accomplish? What isn't working? Do you have a link with an example of what's not working? After examining the snippet, this is my perception of what is

[jQuery] SlideViewerPro - modification request

2008-09-18 Thread Adam
Im using SlideViewerPro from Gian Carlo Mingati- great plugin!! You can see my implementation here: http://www.mydesign.net/our-projects/attractions/acme-factory-raft-ride I would send him this request, but his entire site is in italian and I dont see a way to contact him. What I would like is

[jQuery] Re: Using jQuery Form Plugin - submitting special characters

2008-09-18 Thread [EMAIL PROTECTED]
Hi all, same to me!! Please someone let me know about the solution! []'s Casé On 6 ago, 08:57, Eita [EMAIL PROTECTED] wrote: I know this is an old topic, but I'm dealing with the same problem as Pablo and I didn't find a solution for that. If anyone has a clue to solve this behavior...

[jQuery] dates - fourth Saturday from any given date

2008-09-18 Thread cappy
I'm completely new to this group, because I've only just discovered it, so please forgive me for being a novice. I'm totally baffled by dates - I work in an office that runs an intranet which occasionally needs some kind of js to calculate things. I've pretty much got my head round doing basic

[jQuery] Re: Best JQuery pop-up plugin.

2008-09-18 Thread spherop
I have best luck with blockUI. something about the way jqModal requires you to add a class to the link bugs me. Or maybe I am recalling it incorrectly. blockUI is very lean and seems to cover all the bases. crypto5 wrote: Hi All, what is the best JQuery pop-up window plugin in your

[jQuery] Re: cascade question

2008-09-18 Thread ricardobeat
oops, I didn't pay attention. You need to set the selected attribute and then fire the 'change' event on the parent select to which the 'cascade' funcionality is bounded by default. $('#first [value=B]').attr('selected','selected').parent().change() ricardo On Sep 18, 4:14 am, kevin [EMAIL

[jQuery] Re: dates - fourth Saturday from any given date

2008-09-18 Thread Matt Kruse
On Sep 18, 1:35 pm, cappy [EMAIL PROTECTED] wrote: I need to create a form which the user enters a date and the js displays the fourth Saturday after that date. This really doesn't need to be jquery-related. You can use any old date library, like mine at:

[jQuery] Re: fadeTo animation repeats multiple times in Firefox...why?

2008-09-18 Thread ricardobeat
What is happening is that you are toggling the animations everytime you mouseover/mouseout the element. Try hovering in and out the element and wait, it will cycle through the animations as many times as you hovered. Try this: $('.featured').hover( function(){

[jQuery] Re: div.hover, only w/ background-settings in IE?

2008-09-18 Thread ricardobeat
IE interprets a transparent background as 'phisically' transparent, you can click through. To fix the IE6 background-image flickering bug, add document.execCommand(BackgroundImageCache, false, true) to your JS. On Sep 18, 8:40 am, bnlps [EMAIL PROTECTED] wrote: hi, .. by using this

[jQuery] Re: Best JQuery pop-up plugin.

2008-09-18 Thread MorningZ
something about the way jqModal requires you to add a class to the link bugs me. Or maybe I am recalling it incorrectly You don't *have* to for instance, this would would just fine :-) a id=ThisTriggerOpen Window/a div id=ThisModal style=display: none; Modal Window Markup ... /div

[jQuery] Stop browser to be closed

2008-09-18 Thread Feijó
Can I detect and stop user to close the window without logout ? I have a win-cgi system that is configured to a few hours session timeout, so if the user abandon the session, it will die only in several hours I saw that kind of warning or auto-logoff somewhere, just cant remember. How could

[jQuery] Re: Best JQuery pop-up plugin.

2008-09-18 Thread spherop
ahh ...glad you informed. i take back my point and will have to relook at jqModal... MorningZ wrote: something about the way jqModal requires you to add a class to the link bugs me. Or maybe I am recalling it incorrectly You don't *have* to for instance, this would would just

[jQuery] Re: Hover on all elements: $(*).hover(...)

2008-09-18 Thread ricardobeat
You can do it with the hover function too for a bit shorter code ;) $('body').hover( function(e){ $(e.target).addClass('selected'); }, function(e){ $(e.target).removeClass('selected'); } ); On Sep 18, 2:16 pm, John Boxall [EMAIL PROTECTED] wrote: Thanks a

[jQuery] Re: Stop browser to be closed

2008-09-18 Thread MorningZ
I'm not 100% sure what you are after ultimately... but i think the javascript event onbeforeunload is what you need to use http://www.google.com/search?q=javascript+onbeforeunload

[jQuery] Re: Best JQuery pop-up plugin.

2008-09-18 Thread Chris Jordan
Um... jQueryUI's dialog widget is good... and super easy to use. I'm just sayin'... ;o) Chris On Thu, Sep 18, 2008 at 11:51 AM, crypto5 [EMAIL PROTECTED] wrote: Hi All, what is the best JQuery pop-up window plugin in your opinion? I am not strong experienced in JQuery and looking for

[jQuery] Re: fadeTo animation repeats multiple times in Firefox...why?

2008-09-18 Thread alexcoleman
Perfect. Thank you Ricardo. In addition, I was missing the ; after each event... :) On Sep 18, 12:37 pm, ricardobeat [EMAIL PROTECTED] wrote: What is happening is that you are toggling the animations everytime you mouseover/mouseout the element. Try hovering in and out the element and wait,

[jQuery] Enabling few dates

2008-09-18 Thread faizal iqbaal
Hi All, I am looking for a calendar component wherein I can enable few dates only for eg...I have, say 15 dates in a year which need to enabled for selection out of the whole year. How do i do it, which plugin can I use, I am at present using a calendar componet by matt kruse and wont want to

[jQuery] Jquery 1.2.6 + jGrowl easing error

2008-09-18 Thread gecko68
When I am using the default swing method of easing I get this error. D.easing[this.options.easing || (D.easing.swing ? swing : linear)] is not a function Was easing removed in 1.2.6?

[jQuery] Re: jTemplate and AJAX ?

2008-09-18 Thread websam
Hi Adam, The only thing i have changed in the code from Dave's blog is that I pull the data from a database instead of from a news feed. So you can take a look at the code from the download in his blog, there you will find some javascript function's that deal with jTemplate. Then what I need to

[jQuery] Nothing displays when reloading Flash content with an .ajax() call

2008-09-18 Thread Laker Netman
I've been working on an issue for a while that's got me beat. I have googled quite a bit, and found this article, http://weblogs.asp.net/adamgreene/archive/2007/09/11/ajax-flash-cs3-and-dynamic-javascript.aspx, that describes my issue, but the solution is not jQuery-oriented. Quoting from the

[jQuery] Dialog Box Too Small

2008-09-18 Thread Brad M
Thanks for taking the time to read my question. I have a dialog box on my page that pops up after clicking the link. My problem is that when it comes up, it is too small. My content requires the size of the dialog box to be both wider and taller. I've downloaded jquery-ui-themeroller.css from

[jQuery] Re: Passing values to functions

2008-09-18 Thread ricardobeat
Easy way: a href={$entry.cID} class=delete $('.delete').click(function(){ deleteid(this.href); }); On Sep 18, 3:56 pm, Barney [EMAIL PROTECTED] wrote: Hi, I am trying to get my head around jquery and am converting some standard javascript code over. My old code was setup like

[jQuery] Re: Using jQuery Form Plugin - submitting special characters

2008-09-18 Thread ricardobeat
XHR requests are known to have issues with special characters. Try using the funcion encodeURIComponent() around each string you send with Ajax. On Sep 18, 3:11 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi all, same to me!! Please someone let me know about the solution! []'s Casé

[jQuery] Re: puzzling black hole in $(...).hasClass()?

2008-09-18 Thread ricardobeat
Most jQuery functions fail silently, that's by design. You must write your own function if you want to validate the class name being passed. cheers, ricardo On Sep 18, 11:03 am, ~flow [EMAIL PROTECTED] wrote: hi all, i’m doing this in ffx2 and firebug1.05; i have a local document loaded, go

[jQuery] Re: Dialog Box Too Small

2008-09-18 Thread MorningZ
Well, the object isn't going to take on the width/height of the background Have you tried to explicitly set width and height right there in your CSS?

[jQuery] Re: put image on top of another image

2008-09-18 Thread cc96ai
it won't work in IE 6. On Sep 9, 2:42 pm, Andy Matthews [EMAIL PROTECTED] wrote: You don't need jQuery for this. It can be done with CSS. Here's a link that you can inspect to see what I'm talking about: http://www.commadelimited.com/code/overlapimages/ andy -Original Message-

[jQuery] Re: custom / slimmed-down jquery possible?

2008-09-18 Thread Alex Weber
That's possibly the smartest thing I've heard all day! :) The content INSIDE the lightbox/modal does need jquery but the biggest problem is that im dependent on using jquery to display the modal in the first place... thanks i'm gonna look for alternatives! :) On Sep 17, 2:04 pm, ricardobeat

[jQuery] Re: Using jQuery Form Plugin - submitting special characters

2008-09-18 Thread Carlos André Oliveira
All strings are in the form, to submit this form I'm using the jquery.form plugin as the function below: function foo(){ var options = { url: 'model/serviceRelease.asp?id=5', target: '#divMessage', type: 'get', success: messageSuccess}; $('#myForm').ajaxForm(options);

  1   2   >