[jQuery] jQuery FullCalendar Fetch Events Optimization

2009-12-17 Thread WhoButSB
Hello All, I was wondering if someone could give me some pointers to help optimize my jQuery Full Calendar Code. The issue i'm running into is when I fetch a lot of events through AJAX ( 25), the browser stalls and becomes unresponsive usually resulting in a message to the user to abort the

[jQuery] Re: Variable Scope Help

2009-08-27 Thread WhoButSB
' option to add additional data to the call?http://docs.jquery.com/Plugins/Autocomplete/autocomplete#url_or_datao... The difference with using extraParams is that the values are calculated at the time of the call, so you'll have dynamic values. On Aug 27, 7:06 am, WhoButSB whobu...@gmail.com

[jQuery] Variable Scope Help

2009-08-27 Thread WhoButSB
Hello All, I'm running into some issues where I'm alittle confused about the scope of my variables. I have this code: $(function(){ var categoryID; //Aloha Item Category Dropdown Selection //Takes the Selected Value and adds it to Item Search Ending $(#add-item

[jQuery] FCKEditor jQuery Plugin Configuration

2009-04-28 Thread WhoButSB
I was wondering if anyone could provide me with a sample in how to configure the FCKEditor when I'm using the jQuery Plugin. Do I write the toolbarset script in the configuration within the jQuery like so: $.fck.config = { path: ?= base_url(); ?public/js/fck/,

[jQuery] Superfish Menu Disappears When Clicked

2009-03-12 Thread WhoButSB
Hello All, I have two superfish menus on the same page in the same menu. Whenever I click on one of the items in one of the menus the other superfish menu disappears. Here is the CSS code I'm using, but I don't think it is the issue. Any help would be greatly appreciated. ul.sf-menu li,

[jQuery] Re: jQuery IE PopUp Issue

2009-02-20 Thread WhoButSB
: $('#ui-dialog-title-eventPopUp').html(eventtitle); $('#eventPopUp').html(eventDetails); Is there a work around for this issue? Has anyone else noticed this before? Steve On Feb 11, 4:02 pm, WhoButSB whobu...@gmail.com wrote: Hello all, I'm running into a slight issue with my code

[jQuery] Re: jQuery IE PopUp Issue

2009-02-20 Thread WhoButSB
of the variables I set up. On Feb 20, 8:44 am, WhoButSB whobu...@gmail.com wrote: I have been doing some more trouble shooting on this issue and I came across where my problem is coming from in IE.  IE for some reason isn't letting me use the .html() method for injecting content into my popup

[jQuery] Re: jQuery IE PopUp Issue

2009-02-20 Thread WhoButSB
investigating needs to be done. On Feb 20, 10:20 am, WhoButSB whobu...@gmail.com wrote: So i'm getting a bit closer.  It seems like the variables are not being returned in the success function to be used later on to be added to the DOM.  Here is what my AJAX script looks like: var eventID, eventname

[jQuery] Re: jQuery IE PopUp Issue

2009-02-20 Thread WhoButSB
().parseFromString( xml, 'text/xml' ); throw new Error( 'No XML parser available' ); } You learn something new everyday! On Feb 20, 10:45 am, WhoButSB whobu...@gmail.com wrote: Narrowing it down further and further it looks likeIEis not returning the eventID = $(this).find('eventID').text(); when

[jQuery] jQuery IE PopUp Issue

2009-02-11 Thread WhoButSB
Hello all, I'm running into a slight issue with my code in internet explorer. I'm wondering if anyone else has gone through something similar like this. I have a calendar on my website with a list of events. Each event is a link. When you click on the link I query the server and return some XML

[jQuery] Calendar Modal Pop Up in IE 7

2009-01-20 Thread WhoButSB
Hello all, I've been working on a calendar for my web application that involves using jQuery to create a popup window with the calendar event information. Everything seems to be working great in FF3, Safari and Chrome. But of course IE7 is throwing me issues. Mainly the information in the

[jQuery] Re: Can't get typed value of input

2009-01-20 Thread WhoButSB
I believe if you have the ID in a input box you would only need to use $('#email_id').val() , in order to get the value of the input box. On Jan 20, 9:27 am, abhisek abhisek.d...@gmail.com wrote: Hello, I have an input text field. I just can't get the typed value of it with:

[jQuery] Re: Conflict with Mootools...

2009-01-20 Thread WhoButSB
Hi Erik, If you are using the jQuery.noConflict function and set the jQuery Selector variable to $j as in: var $j = jQuery.noConflict(); You need to make sure you go through all your jQuery code and change the $() selector to $j() or whatever you set the variable to. Also note note you need to

[jQuery] Post values to an outside website

2009-01-13 Thread WhoButSB
Hello all, I have 2 websites which i'm working on. One website has a simple email newsletter page (Site A) and another is a new website i just created with the newsletter sign up form (Site B). I was wondering if it would be possible to send the form from Site B and have it post the data Site A

[jQuery] Re: Using the not() filter

2008-12-18 Thread WhoButSB
time :) cheers, - ricardo On Dec 16, 4:18 pm, WhoButSB whobu...@gmail.com wrote: Thanks Ricardo after lunch I will give that a try. No the Id is not the input itself it a actually the parent div and there are a collection of inputs in the div. I would post my HTML but there is so much

[jQuery] Re: Using the not() filter

2008-12-16 Thread WhoButSB
, #addNewContactDetail').click(); Rik 2008/12/15 WhoButSB whobu...@gmail.com: Hello All! I'm trying to figure out the correct way to use the not() method.  I know there is also a :not() filter in selectors class but I couldn't get that one to work either. My goal is to add

[jQuery] Re: Using the not() filter

2008-12-16 Thread WhoButSB
, #addNewContactDetail').click(); Rik 2008/12/15 WhoButSB whobu...@gmail.com: Hello All! I'm trying to figure out the correct way to use the not() method.  I know there is also a :not() filter in selectors class but I couldn't get that one to work either. My goal is to add

[jQuery] Re: Using the not() filter

2008-12-16 Thread WhoButSB
:04 pm, Ricardo Tomasi ricardob...@gmail.com wrote: by the way: Is #addNewAdress the input itself? Maybe what you're looking for is #addNewAdress :input. Again, seeing the relevant HTML would help. On Dec 16, 1:26 pm, WhoButSB whobu...@gmail.com wrote: I gave this a try: $(input:not

[jQuery] Using the not() filter

2008-12-15 Thread WhoButSB
Hello All! I'm trying to figure out the correct way to use the not() method. I know there is also a :not() filter in selectors class but I couldn't get that one to work either. My goal is to add a click function to all the input fields on a page. But not select the input buttons that are nested

[jQuery] Re: Simple FadeIn with Appending

2008-12-11 Thread WhoButSB
is applied only on the object on which it is called, so if your label is hidden then it will appear slowly. The span tag will just appear, it will not have the fadeIn effect. I am not sure what exactly you are trying to achieve here, but hope this helps. On Dec 11, 11:24 am, WhoButSB whobu...@gmail.com