Re: [jQuery] Drag and Drop and Remember Position?

2010-01-07 Thread Chris Owen
West The way that I was doing it was to store the HTML into the database. Once I get to work I can get an example if you would like? Thanks Chris Owen Sent from my iPhone On 8 Jan 2010, at 06:52, West415 wrote: bump... West415 wrote: Hi, I have a page where users can drag and sort

[jQuery] Re: I need a copy of jquery.js file.

2009-06-06 Thread Chris Owen
Can you not just download it from: http://code.google.com/p/jqueryjs/downloads/list Chris. On Sat, Jun 6, 2009 at 7:24 PM, BrownPrince wrote: > > Please could anyone send me a copy of jquery.js file with other jquery > library scripts. Pls send to t.una...@yahoo.co.uk >

[jQuery] Re: non-DOM usage? (Rhino in the wild)

2009-04-18 Thread Owen Densmore
itself, or at least as a server-side language. Makes a lot of sense building a webapp to have JS on both sides with JSON in the middle. -- Owen On Apr 17, 7:39 pm, Ricardo wrote: > Most features of jQuery are DOM related, so what part of it exactly > would you like to use? jQuery

[jQuery] non-DOM usage? (Rhino in the wild)

2009-04-17 Thread Owen Densmore
Hi folks. Apparently jQuery can not be used outside the browser .. or at least without a DOM: Rhino 1.7 release 2 2009 03 22 js> load('/Users/owen/local/jquery-1.3.2.js'); js: "/Users/owen/local/jquery-1.3.2.js", line 613: uncaught JavaScript runtime exception: ReferenceE

[jQuery] Re: Jquery Save Layout

2009-02-02 Thread Chris Owen
Sorry, Got it working, was missing the div's. How can I get to this value from php so that I can connect to my database? Many Thanks Chris. On Mon, Feb 2, 2009 at 4:48 PM, Chris Owen wrote: > Hi Stephan > > I have tried this and when I click my button I get null. > > Gu

[jQuery] Re: Jquery Save Layout

2009-02-02 Thread Chris Owen
demo: http://jsbin.com/uwujo/edit > > by(e) > Stephan > > > 2009/2/2 Chris Owen : > > Hey, > > > > I have been trying for about a week now to be able to save the layout of > my > > page, I am using sortable, dragable etc so that my users can create there

[jQuery] Jquery Save Layout

2009-02-02 Thread Chris Owen
Hey, I have been trying for about a week now to be able to save the layout of my page, I am using sortable, dragable etc so that my users can create there own layout. I need away to save this layout either to a cookie or to a database so that I can reload there layout when they come back. Many T

[jQuery] Troubleshooting selectors

2008-09-22 Thread owen
a which doesn't target "logout" should open in a new window. Except it's triggering for links inside div#headerright whether or not it's inside #headera. What am I doing wrong? -- Owen

[jQuery] Replacing an inline onkeypress

2008-09-11 Thread owen
is requires the addition of an onkeypress attribute for specific form fields. I'd like to do something like this: $("#myform input").keypress( function() { return checkEnter(event); } ); ...but I don't know "event" gets properly passed without using the inline onkeypress. Thanks, Owen

[jQuery] Re: Detecting Ctrl + click

2008-09-11 Thread owen
I've had some success with the hotkeys plugin: http://code.google.com/p/js-hotkeys/ Check out the demo: http://jshotkeys.googlepages.com/test-static-01.html -- Owen

[jQuery] Re: Validating forms with identical input names

2008-06-24 Thread owen
u. I'm glad to know I wasn't missing something about how the plugin could work if only I knew how. -- Owen

[jQuery] [validate] Validating forms with identical input names

2008-06-23 Thread owen
to re-think my server-side processing? Thanks, Owen

[jQuery] Re: Adding times

2008-06-03 Thread owen
...but the download links are broken :( -- Owen

[jQuery] Adding times

2008-06-02 Thread owen
Does anyone know of a good plugin/function/library for adding up times? My primary requirement is to be able to take strings like "9:00 AM" and "5:00 PM" and calculate the hours between. I don't want to reinvent the wheel, especially considering mine will end up being square... Thanks, Owen

[jQuery] Re: Shadow jQUery

2008-05-28 Thread owen
Is this obsolete? http://docs.jquery.com/UI/Shadow -- Owen

[jQuery] Error when tablesorter is applied to empty table

2008-05-08 Thread owen
to sort an empty table? Thanks, Owen

[jQuery] Tabs conflict with in-page anchors?

2008-04-10 Thread owen
ith the tabs? Interestingly, I can embed a link on that page that will make the jump. I'm guessing that's because the handling of the anchor for tab- switching is being done on page load? How can I get the tabs to play nice with my non-tab-linking anchor? Thanks, Owen

[jQuery] Re: tablesort

2008-04-07 Thread Owen Leonard
> I have the id's correct. hOWEVER , it still doesn't sort. > its seems very easy to use but it will not work. Do you have the right table markup? You can't forget your and . -- Owen Web Developer Athens County Public Libraries http://www.myacpl.org

[jQuery] Re: Return the checked items from checkboxes plugin

2008-03-03 Thread owen
t; Return the checked items: $("#myform").checkCheckboxes(".top5", true); Do I need to construct it like this in order to access the returned object? checkall = $("#myform").checkCheckboxes("*", true); Don't I need to know the structure of the object in order to access information about it? Owen

[jQuery] Re: Tab that links to another page

2007-11-19 Thread Owen Leonard
Thanks very much, that works beautifully. -- Owen

[jQuery] Re: Tab that links to another page

2007-11-19 Thread Owen Leonard
I must be doing something wrong: http://zivotdesign.com/examples/jquery/tab-href.html -- Owen

[jQuery] Tab that links to another page

2007-11-17 Thread owen
Is it possible to create a tab that links directly to another page? I can't load the contents of the other page because of limitations in the app, but I want to keep the link consistent with the other tabs. How canI do that? -- Owen

[jQuery] "Page loading" overlay

2007-11-06 Thread owen
"") inside the page body, with an onload function that hides the overlay. I was hoping there was a smarter way to do it with jquery. Is there a way to fire off a function when the body /starts/ to load? -- Owen

[jQuery] Re: jquery version of YUI Buttons?

2007-10-15 Thread owen
. But I thought I'd throw it out there in case others might be interested. -- Owen

[jQuery] Plugin to format date string

2007-09-25 Thread owen
I seem to recall seeing a plugin that would take a date-entry form field and reformat the date the user enters according to a predefined date format. Am I making that up? I can't seem to find it now. -- Owen

[jQuery] Re: jquery version of YUI Buttons?

2007-09-20 Thread owen
utton1/ I'm particularly interested in the the combination button/dropdown (the 'reply' button in the example). I got suddenly optimistic when I saw ui.query.com, but no luck :) -- Owen

[jQuery] Re: can't quite finish this ...

2007-09-18 Thread Owen Parker
Solved it by removing the submithandler JS and adding saverec.php to the action tag. Validation still works client-side and it saves. Now for the SS ajax stuff. I'll study the sample you pointed to and see what sort of fun that can get me into... :) thanx for your reply, BTW... regards Owen

[jQuery] Re: can't quite finish this ...

2007-09-18 Thread Owen Parker
someday... Thanx for the reply Alexandre. I looked at that example and am going to use it to try to AJAX this thing before it is saved... Owen

[jQuery] can't quite finish this ...

2007-09-18 Thread Owen Parker
ough this ajax thing is just flying over my head like a blond at a spelling bee, I will admit) . Little help? regards Owen

[jQuery] can't quite finish this ...

2007-09-18 Thread Owen Parker
ough this ajax thing is just flying over my head like a blond at a spelling bee, I will admit) . Little help? regards Owen

[jQuery] jquery version of YUI Buttons?

2007-09-12 Thread owen
I've searched without success, so I thought I'd ask here: Does anyone know of a jquery version of YUI's Button component? (http:// developer.yahoo.com/yui/button/) I'm not opposed in principle to using YUI, but it seems like it would be easier to not have to mix libraries. Thanks, Owen

[jQuery] Onclick dropdown menu

2007-09-05 Thread owen
vel menu item. Am I missing a possible setting in one or more of these options, or should I be looking at making changes to make them work the way I want them to? Or is there a better option I don't know about? Thanks, Owen

[jQuery] Re: Select list scroll event?

2007-07-02 Thread owen
thout/ clicking? It only works for me if I actually choose one of the options. -- Owen

[jQuery] Select list scroll event?

2007-06-29 Thread owen
#x27;d like the image to change as you scroll through the list. Is that possible? Thanks, Owen