[jQuery] Re: checking if jquery loaded

2010-01-19 Thread zendog74
wrote: Hello zendog74, In your script above you have script.onload = loadPlugins();, the onload event is only usable in the body tag or the frameset tag. Other than that I think your script is ok. On Jan 15, 4:44 pm, zendog74 n8cs...@gmail.com wrote: These just give me undefined errors

[jQuery] Re: checking if jquery loaded

2010-01-15 Thread zendog74
) {  // jquery is loaded} if($) {  // jquery is loaded } or if (jQuery != null) {  // jquery is loaded} if ($ != null) {  // jquery is loaded } On Thu, Jan 14, 2010 at 11:30 PM, zendog74 n8cs...@gmail.com wrote: I am trying to only load jquery and jqueryui if they do not already exist

[jQuery] checking if jquery loaded

2010-01-14 Thread zendog74
I am trying to only load jquery and jqueryui if they do not already exist. If they do exist, then I load a bunch of plug-ins used by the app. However, the below is not working and I have no idea why. Can anyone provide some insight? if (typeof jQuery == 'undefined') { console.log(loading

[jQuery] Address plug-in issues

2009-11-25 Thread zendog74
I am using the jQuery Address plug-in (http://www.asual.com/jquery/ address/) to enable bookmarking and back and forward buttons in a document search portlet. I have things working well when there is only one search portlet on the page. However, when I put two search portlets on the page, events

[jQuery] Form values disappearing

2009-11-10 Thread zendog74
I am using the JQuery Address plug-in to bookmark state changes in an application. The application allows a user to run a search of a document set. When the user requests a search that has not been run before, the search is performed and then the search form and search results are cached using

[jQuery] Form Plugin Large File Upload Problem

2009-07-07 Thread zendog74
I am using the JQuery Form Plugin on a form that is shown in a modal window (nyroModal) to upload files. It is working like a charm as long as the file is a reasonable size. However, if a user tries to upload a large file (say 100MB or more), when response comes back (HTML response), it re-loads

[jQuery] select random div

2009-06-29 Thread zendog74
I am using the periodic updater plug-in to make an Ajax call to grab an HTML file that has many divs in it. I want to parse the returned HTML and display a random div in a placeholder div on the page. I am stuck on how to select out the random div from the returned HTML. Can someone please lend a

[jQuery] Re: clueTip access to xhr

2009-04-20 Thread zendog74
  ) --Karl Karl Swedbergwww.englishrules.comwww.learningjquery.com On Apr 16, 2009, at 2:52 PM, zendog74 wrote: I am successfully using clueTip to make ajax requests that return either xml or json and populate the tooltips. It is working great. However, I am trying to make my

[jQuery] clueTip access to xhr

2009-04-16 Thread zendog74
I am successfully using clueTip to make ajax requests that return either xml or json and populate the tooltips. It is working great. However, I am trying to make my code more sophisticated to handle exceptions and I need access to the xhr to do that properly. I have been unable to find a way to

[jQuery] Time select/text boxes like Google Calendar

2009-02-19 Thread zendog74
Does anyone know how to mimic the Google Calendar time select/text input using jQuery? I have autocomplete working on a different field in my form and thought that it may work for hour and minute selection on a text input, but I cannot get the values to show up unless the user clears the field

[jQuery] Re: autocomplete and json

2009-02-19 Thread zendog74
[lastName__]); } On Feb 5, 3:42 pm, zendog74 n8cs...@gmail.com wrote: I managed to alias some of the classes to more simple names in my WS, so myJSONnow looks like this. {persons:         {person:[                 {personId__: 6,firstName__:Jack,lastName__:Black,email__:jbl

[jQuery] autocomplete and json

2009-02-05 Thread zendog74
What is the status of using remote JSON with jquery.autocomplete? I saw a couple of threads in the group about it, but they are patchworky and hard to follow. I did not see anything about using JSON on the autocomplete jquery plugin site. Is using remote JSON supported or do I have to modify

[jQuery] Re: autocomplete and json

2009-02-05 Thread zendog74
[lastName__] + ' [' + row[email__] + ']', result: row[email] }); } return parsed; }; On Feb 5, 10:32 am, zendog74 n8cs...@gmail.com wrote: What is the status of using remote JSON with jquery.autocomplete? I saw a couple of threads in the group about