[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 scri

[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 selec

[jQuery] Re: Variable Scope Help

2009-08-27 Thread WhoButSB
ng to re-initialize it again. Is it > necessary that the URL has to change? Could you not use autocomplete's > 'extraParams' option to add additional data to the > call?http://docs.jquery.com/Plugins/Autocomplete/autocomplete#url_or_datao... > The difference with using ext

[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: "public/js/fck/", toolbar: "Default

[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, ul.sf-m

[jQuery] Re: jQuery IE PopUp Issue

2009-02-20 Thread WhoButSB
return new DOMParser().parseFromString( xml, 'text/xml' ); throw new Error( 'No XML parser available' ); } You learn something new everyday! On Feb 20, 10:45 am, WhoButSB wrote: > Narrowing it down further and further it looks likeIEis not > returning the eventID

[jQuery] Re: jQuery IE PopUp Issue

2009-02-20 Thread WhoButSB
he file no problem. More investigating needs to be done. On Feb 20, 10:20 am, WhoButSB 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: &

[jQuery] Re: jQuery IE PopUp Issue

2009-02-20 Thread WhoButSB
alog-title-eventPopUp').html(eventtitle); $('#eventPopUp').html(eventDetails); $('#eventPopUp').dialog(); } }); As you can see i'm running the AJAX script to get the

[jQuery] Re: jQuery IE PopUp Issue

2009-02-20 Thread WhoButSB
ouble: $('#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 wrote: > Hello all, > I'm running into a slight iss

[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] 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 ma

[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 wrote: > Hello, > I have an input text field. I just can't get the typed value of it > with: > $("input#email_id").val(); > It kee

[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 modal

[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
y.com/Traversing, > and make sure you post the full code next time :) > > cheers, > - ricardo > > On Dec 16, 4:18 pm, WhoButSB 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

[jQuery] Re: Using the not() filter

2008-12-16 Thread WhoButSB
:04 pm, Ricardo Tomasi 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 wrote: > > > I gave this a try: > >

[jQuery] Re: Using the not() filter

2008-12-16 Thread WhoButSB
e: > > > Try: > > > $("input").not('#addNewAddress, #addNewContactDetail').click(); > > > Rik > > > 2008/12/15 WhoButSB : > > > > Hello All! > > > I'm trying to figure out the correct way to use the not() method.  I > > > know

[jQuery] Re: Using the not() filter

2008-12-16 Thread WhoButSB
e: > > > Try: > > > $("input").not('#addNewAddress, #addNewContactDetail').click(); > > > Rik > > > 2008/12/15 WhoButSB : > > > > Hello All! > > > I'm trying to figure out the correct way to use the not() method.  I > > > know

[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
hat value from somewhere, before > trying to use it. Also the effect 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 tryi

[jQuery] Simple FadeIn with Appending

2008-12-11 Thread WhoButSB
Hello all, I have a really simple question but, and once I figure out this little hurdle I know I will be able to work on a lot more stuff. I would like to add a simple notification to fade in when some one presses a button but I would like to attach the notification after a label. I know I have