[jQuery] Ajax request not working in IE7. Works in IE8,FF3+

2010-01-15 Thread Don
jQuery v1.3.2 I have an ajax calendar that loads when the page loads. To change the month I use ajax to update the month view. On each ajax load I replace the calendar container with: ... Calendar code here ... $calHTML .= ' function call_cal(cal

Re: [jQuery] Can jquery do this? font-colour

2010-01-07 Thread Don Dunbar
The easiest way to do that is simply make the background to that area black. Then the white text shows up no matter what. It would eliminate the need to do extra work with scripts. DED On Tue, Jan 5, 2010 at 5:09 PM, annie wrote: > I'm very very new to jquery so please be patient with my questio

[jQuery] Newby question - jquery tablesort demo 2 (forgot link to my site)

2009-12-07 Thread Don Moore
re is my best attempt so far: http://www.donsmoore.com/jquery/test2.php Thanks don

[jQuery] Newby question - jquery tablesort demo

2009-12-07 Thread Don Moore
hanks don

Re: [jQuery] Re: (validate) form field validation with field id doesn't work.

2009-10-30 Thread Don Dunbar
Hi, multiple fields should not have the same 'name' in a form. If you need first name for two parts of a form, then you should give a more explicit name to the input : ex. first name for shipping could be 'firstNameShip' and first name for billing could be 'firstNameBill' etc. The reason is because

[jQuery] Re: how to set array value????

2009-10-24 Thread Don Dunbar
Hi Jacob, the format in your 'input' is a Ruby on Rails microformat; the "name='branch[blahblah]'" is a ruby hash. The problem could be how it is being parsed on the server with your ruby code. Here is short article about the use of microformats in rails. http://wonderfullyflawed.com/2009/02/17/rai

[jQuery] Re: password initial value without masking "****"

2009-10-20 Thread Don Dunbar
Hi, another thing you can try is to use a label for the password input. Just change the label styles to go on top of the input field ( it will look like it is in the field.) Then when the input field has focus, hide the label so it doesn't block the field. I just saw Waseem has the same idea. Actu

[jQuery] Re: (tooltip) Markup problem

2009-10-14 Thread Don Dunbar
Hi, documents can contain as many "H3" headers as are needed. In a tooltip, 'H3' makes the most sense because a single page generally should have only one 'H1' and 'H2' should be reserved for segment heads. So it's not a big issue to have the 'H3' in the tooltip dialog and still remain semantically

[jQuery] Re: tablesorter - disabling sorting for a row

2009-10-13 Thread Don Dunbar
Hi, you could try adding "class='{sorter:false}' to that row. See if that works, it works for thead ths.DED On Tue, Oct 13, 2009 at 3:18 AM, Konstantin K wrote: > > Hi folks, > > I'm using the awesome tablesorter plugin and I have one question: > > 1. is it possible to have a row not be part of

[jQuery] Re: Preventing double submits

2009-10-13 Thread Don Dunbar
Hi, can't you check validation before applying the block? Then if validation returns false direct focus to the first invalid field, and cancel the call to the block.This might work. DED On Tue, Oct 13, 2009 at 5:49 AM, Mark Smith wrote: > > Hi, > > I am using jQuery and blockUI to prevent the us

[jQuery] Re: (validate) does not work with backup php validation

2009-10-13 Thread Don Dunbar
Hi, it's hard to tell, could you explain in more detail what you mean by 'ignored completely'. Do you mean that you tried entering invalid data and the javascript didn't produce errors? But, at the same time you seem to have a problem in your php validation. Your if statement says 'if name exists a

[jQuery] Re: AJAX & callbacks: load(); $.get() and $.post() do not

2009-10-13 Thread Don Dunbar
Hi, it could be that your not supplying the type of return in the .post and .get calls. According to the API .post and .get have a fourth param of 'type' such as 'xml' or 'json'. This might not be the issue but it could be because your server won't know what mime type to return. DED On Tue, Oct 13

[jQuery] Re: Only one of two fields is required. How to implement this logic in Jquery form validation?

2009-10-12 Thread Don Dunbar
Hi, glad you found a solution:to prevent the user from filling out both inputs in the first place. [code]$("#days").change(function(){ $("#participations").attr("disabled","disabled"); }); $("#participations").change(function(){ $("#days").attr("disabled","disabled");

[jQuery] Re: Only one of two fields is required. How to implement this logic in Jquery form validation?

2009-10-11 Thread Don Dunbar
make sure one is checked.DED On Mon, Oct 12, 2009 at 1:43 AM, Phper wrote: > > > I am not familiar with the syntax of Jquery plugin. > > On Oct 12, 2:19 pm, Don Dunbar wrote: > > Hi , I double checked on javascript's XOR operator and it only works with > > bitwise

[jQuery] Re: Only one of two fields is required. How to implement this logic in Jquery form validation?

2009-10-11 Thread Don Dunbar
red. But there > are additional two fields, which are "participations" and "days". Only > one of them is required. Either "participations" or "days" is > required. How to write this code? > > On Oct 12, 10:17 am, Phper wrote: > > A good

[jQuery] Re: LavaLamp problem in IE

2009-10-11 Thread Don Dunbar
Hi, this sounds like a CSS issue actually. You should search for how to make a conditional comment in X/HTML and apply a separate style sheet for IE using that. The reason this happens is probably because of how IE especially 6 and earlier handles the box-model in css differently. And so styles lik

[jQuery] Re: Only one of two fields is required. How to implement this logic in Jquery form validation?

2009-10-11 Thread Don Dunbar
:42 AM, Phper wrote: > > How can I write the code in the context of Jquery validate function? > > On Oct 11, 12:43 pm, Don Dunbar wrote: > > Hi, javascript has an 'xor' operator. It works just like 'or' in an 'if' > > statement except in 'xor

[jQuery] Re: Only one of two fields is required. How to implement this logic in Jquery form validation?

2009-10-11 Thread Don Dunbar
Hi, javascript has an 'xor' operator. It works just like 'or' in an 'if' statement except in 'xor' only one side can be true. In a normal 'or' statement either side can be true or both can. So you probably want to do something like: if ( A XOR B) { } . Then only one can be true to continue if both

[jQuery] Re: Assigning CSS 'display:block' by jquery not working

2009-10-11 Thread Don Dunbar
Hi, this appears to be happening because of specificity in the CSS. You have the 'hidden' on a direct specification i.e. the 'ul' in question. Try adding a class like : .hidden {display:none;} and then adding and removing that through your jQuery ul.addClass("hidden") ; ul.removeClass("hidden");Th

[jQuery] jQuery + document.write + ajax

2009-04-24 Thread Don
Hi Folks, by clicking on a link I want to reload a skyscraper banner. The code for the skyscraper banner is in a file_with_the_banner.html I want to include this file with jquery ajax. I have this code in the index.html $(function() { $('a').click(function() { $('<

[jQuery] JQuery Cycle Plugin - Slide effect

2008-11-19 Thread Don
Hey guys, I'm re-doing a website and found this plug-in and an example script that I liked. Well I implemented one section and all was good, or so I thought... Past the first 2 sections, nothing works and it's the flipping # in the tag in the slide.js script causing the problems. There is a link

[jQuery] jQuery Treeview + CheckBox

2008-09-21 Thread Don Quijote de Nicaragua
It is possible to use a CheckBox in a Treeview? Es posible usar un CheckBox en un Treeview? Don Quijote de Nicaragua. Elder Soto.

[jQuery] Re: jquery wallpaper

2008-08-28 Thread Don Quijote de Nicaragua
http://jquery.com/blog/2007/01/13/jquery-wallpapers/ Don Quijote de Nicaragua. Elder Soto On 28 ago, 08:38, tlphipps <[EMAIL PROTECTED]> wrote: > Several months ago somebody posted a link to some jquery wallpapers > that they had created (not cheatsheets, just color background with &

[jQuery] Function + Isdate

2008-07-21 Thread Don Quijote de Nicaragua
Hi, everyone, How I can use the function "isdate" in jQuery Thank you. Spanish: Hola a todos, como puedo usar la función "Isdate" en Jquery. Muchas Gracias. Don Quijote de Nicaragua. Elder Soto. Español:

[jQuery] the list not reflected the change

2008-07-02 Thread Don Quijote de Nicaragua
ambio en un elemento, la lista no la refleja, me muestra el valor anterior, antes del cambio, alguna sugerencia. Gracias. Don Quijote de Nicaragua. Elder Soto COMPLETE CODE Try With Page.Request imRecord = Convert.ToByte(.Params("imRecord").ToStri

[jQuery] Re: automatically copy the contents of inpubox in another

2008-06-08 Thread Don Quijote de Nicaragua
I response my self: $('#txtCantidadR').keyup(function () { $("#txtEquivalencia").val($ ("#txtCantidadR").val()); Other Way to make this ? Thanks. On 8 jun, 19:53, Don Quijote de Nicaragua <[EMAIL PROTECTED]> wrote: > How can I do to aut

[jQuery] Re: ASP.NET UserControl and jQuery

2008-06-08 Thread Don Quijote de Nicaragua
//jQuery library reference //How can I check if the jQuery lib is already loaded by the main page $(document).ready(function(){ //You Code Here... }); Saludos. Don Quijote de Nicaragua. Elder Soto. Check this other link

[jQuery] automatically copy the contents of inpubox in another

2008-06-08 Thread Don Quijote de Nicaragua
How can I do to automatically copy the contents of inpubox in another line is written in the first. Gracias Spanish: Como puedo hacer para copiar automaticamente el contenido de inpubox en otro conforme se escribe en el primero.

[jQuery] Re: Only Acept Number and "." or ","

2008-05-20 Thread Don Quijote de Nicaragua
Muchas Gracias Exactamente eso es lo que necesitaba. Saludos. Don Quijote de Nicaragua. Elder Soto. On 20 mayo, 13:20, Ariel Flesler <[EMAIL PROTECTED]> wrote: > This is exactly what you need: >  http://itgroup.com.ph/alphanumeric/ > > This could be useful too: >    h

[jQuery] Only Acept Number and "." or ","

2008-05-20 Thread Don Quijote de Nicaragua
I need to create a input, but only acept numer or this caracter "." or "," Español. Necesito crear un input, pero que únicamente acepte números o los caracteres "." ò ",". Gracias. Don Quijote de Nicaragua. Elder Soto.

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Don Quijote de Nicaragua
.Close() : .Dispose() End With sHtml &= "" Catch ex As Exception sHtml = "Lista de paises " sHtml &= "vacía" & Nl & "" End Try Return sHtml End Function End Class Don Quijote de Nicaragua. Elder Soto. On 18 mayo, 13:30, Mike <[EMAIL PROTECTED]> wrote: > Do these work well together or cause conflicts?

[jQuery] append problem in ie7

2008-03-05 Thread Don
hi guys, Im new to jquery. I have this problem and I think you guys can answer it. Here's the source code of the file that I am working on. The purpose of this script is to change the label into different language. -

[jQuery] Re: fadeTo refiering/flickering when hovering div's element

2007-12-19 Thread don Jao
wedberg-2 wrote: > > > Hi don, > > I just approximated your page's markup and used the .hover() method. > It's working fine for me. Would you mind testing here and letting us > know if you still see the problem? ... > > http://test.learningjquery.com/fadeto.html

[jQuery] Re: fadeTo refiering/flickering when hovering div's element

2007-12-19 Thread don Jao
under the > mouse has the target element as an ancestor. > > On Dec 18, 9:23 am, don Jao <[EMAIL PROTECTED]> wrote: >> Hi Everyone, >> >> I'm pretty new to jQuery, and my JavaScript sills aren't very good to0, >> but >> they're not too b

[jQuery] fadeTo refiering/flickering when hovering div's element

2007-12-18 Thread don Jao
Hi Everyone, I'm pretty new to jQuery, and my JavaScript sills aren't very good to0, but they're not too bad either. I'm in need to fade a whole div, with couple of input fields, text and images inside it from 50% to 100% opacity. I used simple way to get it: $("div").mouseover( function() { $(