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

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

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

[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] Re: checking if jquery loaded

2010-01-15 Thread zendog74
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 wrote: > > I am trying to only load jquery and jq

[jQuery] Re: checking if jquery loaded

2010-01-19 Thread zendog74
llo 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 wrote: > > > These just give me undef

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

[jQuery] Re: autocomplete and json

2009-02-05 Thread zendog74
//formatItem: formatItem, //formatMatch: formatMatch parse: autocompleteJSON, formatItem: function(row) { return row["email__"]; //return row.firstName__ + " " + row.lastName__ + "[" + row.email + "]"

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

[jQuery] Re: autocomplete and json

2009-02-19 Thread zendog74
tion formatPocResult(event, row, formatted) { jQuery("#pocEmail").val(row["email__"]); jQuery("#pocFname").val(row["firstName__"]); jQuery("#pocLname").val(row["lastName__"]); } On Feb 5, 3:42 pm, zendog74 wr

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

[jQuery] Re: clueTip access to xhr

2009-04-20 Thread zendog74
Github > (http://github.com/kswedberg/jquery-cluetip/tree/master >   ) > > --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