[jQuery] Re: JSON String problem

2007-08-16 Thread Terry B
and here are the lines i have been searching for (i think, havent tried it but should be) if (issimplevalue(arg) and isnumeric(arg)){ return ToString(arg); } if (issimplevalue(arg)){

[jQuery] Re: JSON String problem

2007-08-16 Thread Terry B
well im using the serializer that came with mxajax... which is the one right off json.org i believe... ahh... i missed it.. *slaps forhead* duh, the serializer... ok, i see where I need to be looking... i was looking at the json.js serializer and not the mxajax serializer... thanks everyo

[jQuery] Re: JSON String problem

2007-08-16 Thread Terry B
yes I know about strings and numeric conversions. I want to know is there a way to force json to force values to strings. I have played with the parser but it is a PITA and played with adding " " at the query level but that is too cumbersome. I can't believe JSon does not have any options or se

[jQuery] JSON String problem

2007-08-16 Thread Terry B
has anyone had any problem with JSON whereas a string is "063" and it gets translated to a number, in this case "51"??? The response from a call has the appropiate value [063] but I have noticed that since it is not in string notation ["063"] when used it gets converted. I would rather not have

[jQuery] ContextMenu plugin - right click menu

2007-08-10 Thread Terry B
ContextMenu plugin - right click menu Well since I did not see any contact info on the page, I will just post here. I like this plugin but at least one bug and at least one suggestion. Referring to the plugin found here: http://www.trendskitchens.co.nz/jquery/contextmenu/ 1) If you use jquery

[jQuery] Re: $Ajax memory problem

2007-08-06 Thread Terry B
It would be nice to determine where this array is as I have noticed the same and would like to get it fixed in 1.1.2 as 1.1.3 really is not backwards compatible with all the plugins I use. ~Terry On Aug 6, 7:22 am, Stephan Beal <[EMAIL PROTECTED]> wrote: > On Aug 6, 1:20 pm, Stephan Beal <[EMAI

[jQuery] Re: Help with dblclick

2007-08-03 Thread Terry B
i made it even more simply... sry, took forever for the post to actually post... $t("#event_" + i).dblclick(function () {eventDoubleClick(this)}); } just send the object On Aug 3, 4:03 pm, "Michael Geary" <[EMAIL PROTECTED]> wrote: > > From: Terry B >

[jQuery] Help with dblclick

2007-08-03 Thread Terry B
I have a bunch of events and I loop through them. I would like to create a double-click effect so that I call function "eventDoubleClick" but I want that event to pass its index value, as such: for (i=0, ihttp://www.userfriendly.org :P ) Thanks ~Terry

[jQuery] Re: What does === equate to?

2007-08-02 Thread Terry B
known about this for awhile but since we are on the topic... there has to be some over head of using == and != does anyone know for sure the impact of the overhead... and does it matter of the type On Aug 2, 6:21 am, "Ian Struble" <[EMAIL PROTECTED]> wrote: > !== and === are identity

[jQuery] Re: Do you think jQuery's documentation is enought?

2007-08-02 Thread Terry B
I like http://www.visualjquery.com for my jquery documentation... yes there is lots of room for "improvements" but it's a working and living project which is constantly changing and I think the project managers are doing a great job to date... and demos? look at the plugin pages for demos...

[jQuery] Re: Anyway to kill a bunch of queued up mouse events

2007-07-30 Thread Terry B
the logic should be something like: var timeInSecs = 0.8; var mouseEventCaller; onHoverFunctionInit () { clearTimeout(mouseEventCaller); var timeout = Math.ceil(timeInSecs*1000); mouseEventCaller = setTimeout("onHoverFunctionExec()", timeout); } onHoverFunctionExec() {

[jQuery] Re: problem with $.ajax()

2007-07-25 Thread Terry B
I want to say that it is now 2 (maybe 3) ip addresses. for sure, it is the localhost (127.0.0.1) address and one other ip address can use it. ~Terry On Jul 18, 11:26 am, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: > > The "Developers Edition" is a single IP license. Only 1 IP address can >

[jQuery] Re: retrieving the width of an element??

2007-07-24 Thread Terry B
parseInt($t("#divID").css("width") ) should work On Jul 24, 11:25 am, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > Is this happening in all the browsers or just a specific browser? > > -- > Brandon Aaron > > On 7/24/07, GianCarlo Mingati <[EMAIL PROTECTED]> wrote: > > > > > .width() is not enough

[jQuery] Re: draggable clone name

2007-07-20 Thread Terry B
I wish i could use Firefox in the environment i am in... but cant. yes the 1st argument is the Cloned Element, but I wanted the Clone name which I found is "dragHelper" and where I want to manipulate the info as it is being dragged around. also instead of using the 1st argument, you can use "t

[jQuery] Re: draggable clone name

2007-07-20 Thread Terry B
fyi, the name is "dragHelper" On Jul 20, 11:11 am, Terry B <[EMAIL PROTECTED]> wrote: > i am using onDrag to update some info within the dragged div which > works but what i really want is to update the info in the clones. how > are the clones named, anyone know off-hand? > > ~Terry

[jQuery] Re: Solving the Back button problem

2007-07-20 Thread Terry B
or expire the page if you do not want them to ever use the back button On Jul 19, 10:23 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > Perhaps try setting a cookie the first time the page is loaded. Then > check each time the page is loaded for the cookie. > > Karl Rudd > > On 7/19/07, S. Rober

[jQuery] name is...

2007-07-20 Thread Terry B
found i, fyi, the name is "dragHelper"

[jQuery] draggable clone name

2007-07-20 Thread Terry B
i am using onDrag to update some info within the dragged div which works but what i really want is to update the info in the clones. how are the clones named, anyone know off-hand? ~Terry

[jQuery] Re: dev tip: combining JS script files

2007-07-16 Thread Terry B
This is a good page on optimzing javascript for speed... http://betterexplained.com/articles/speed-up-your-javascript-load-time/

[jQuery] Re: append reformting the content i send it

2007-07-11 Thread Terry B
Ya I finally figured that part out. Not liking it but I found a smooth way of doing what I want. Thanks for all the replies... On Jul 11, 6:17 am, Stephan Beal <[EMAIL PROTECTED]> wrote: > On Jul 10, 1:38 pm, Terry B <[EMAIL PROTECTED]> wrote: > > > wtf? I have specifi

[jQuery] Re: append reformting the content i send it

2007-07-10 Thread Terry B
lets say i try and add Some Info it ends up being something like Some Info On Jul 10, 11:07 am, "Rob Desbois" <[EMAIL PROTECTED]> wrote: > What is the content you are trying to add...? > > On 7/10/07, Terry B <[EMAIL PROTECTED]> wrote: > > > > >

[jQuery] append reformting the content i send it

2007-07-10 Thread Terry B
wtf? I have specific html i want added to a div so I use append to add it. fine it works but it is formatting the code and making it unusable. how do i prevent append from doing this?

[jQuery] Re: Navigation conversion

2007-07-08 Thread Terry B
I dont have an absolute solution as I havent played with this quite yet but Interface plugin should help you here. Recommend using JQuery 1.1.2 for it though. Go here: http://interface.eyecon.ro/demos and look at "Fisheye menu" for example this probably could be done without Interface by apply

[jQuery] Re: jquery-1.1.3.1 with interface slider trouble

2007-07-08 Thread Terry B
You mean UI library or is that the same? On Jul 7, 10:51 pm, "Benjamin Sterling" <[EMAIL PROTECTED]> wrote: > FYI, there will be a new FX library coming on line sometime in the near > future, just not sure when.

[jQuery] Re: jquery-1.1.3.1 with interface slider trouble

2007-07-07 Thread Terry B
interface isnt supported under 1.1.3 On Jul 7, 10:22 pm, philguillard <[EMAIL PROTECTED]> wrote: > Hi all, > > When i try jquery-1.1.3.1.pack.js with interface slider last pack on > IE6, i get a usual "Object doesn't support this property or method" on > the "$('.sliderPrice').Slider(" line, > ev

[jQuery] Re: Main jQuery Site Problems

2007-07-06 Thread Terry B
also been under a huge load do to new release this week On Jul 6, 8:47 am, "John Resig" <[EMAIL PROTECTED]> wrote: > Fixed. > > On 7/6/07, Dave Probert <[EMAIL PROTECTED]> wrote: > > > > > > > FAO: John, et al. > > > Main jQuery Site seems to have a problem on many pages - message at > > the top

[jQuery] Re: how can I prohibit from users pasting content into text boxes?

2007-07-04 Thread Terry B
disable the text box On Jul 4, 5:25 pm, PaulM <[EMAIL PROTECTED]> wrote: > how can I prohibit from users pasting content into text boxes?

[jQuery] Re: Jquery presentation today

2007-07-02 Thread Terry B
yea, i wont switch over to 1.1.3 until interface is completely tested with 1.1.3. until then, its still "under test" for my projects... btw, just to share briefly before i can figure actual numbers but something that will be going into a brief for one of my clients... we (I) converted a flash a

[jQuery] Re: 1.1.3 and Interface

2007-07-02 Thread Terry B
I hope so too... I do have one issue so far with draggables not working like 1.1.2 On Jul 2, 2:08 pm, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote: > I am thrilled to see the 1.1.3 release. > > One question, my main project makes heavy use of Interface. Is this project > still being developed? Ca

[jQuery] Bug:

2007-07-02 Thread Terry B
Should I submit bug report or did I miss some change I need to implement on below issue? In 1.1.2 using $t("#event_" + EventArray[i].ID).Draggable({ axis: 'horizontally', ghosting: true,

[jQuery] Re: Difference between element and # access

2007-06-27 Thread Terry B
sry man, i wasnt meaning to get on ya... i wanted to just to point it out cause some ppl really dont know and i would luv to see the developers actually enforce it and not make it easy to be lazy :D so, again sorry... On Jun 27, 4:12 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Yes, of cour

[jQuery] Re: Difference between element and # access

2007-06-27 Thread Terry B
The whole point of having an ID is to have a unique id. You should not be assigning the same ID name to multiple objects. Use classes if you want to handle multiple objects. http://www.w3.org/TR/1999/REC-html401-19991224/struct/global.html#adef-id id = name [CS] This attribute assigns a name t

[jQuery] Re: Difference between element and # access

2007-06-27 Thread Terry B
ego A." <[EMAIL PROTECTED]> wrote: > I'm not sure, but I'm guessing there will be some sort of performance > difference. I'm guessing '#id' is faster than 'div#id' if '#id' just > uses getElementById, whereas 'div#id' might fin

[jQuery] Re: Load into tbody, errors IE6

2007-06-27 Thread Terry B
i dont have any problems with mine in IE6 var ID = function(query) { return query.ID }; var FIELD = function(query) { return query.FIELD }; function NewQueryResult(result) { DWRUtil.removeAllRows("testBody"); DWRUtil.addRows("testBody", resultarray, [ ID , FIELD ]) } ~Terry On Jun 27, 12:2

[jQuery] Difference between element and # access

2007-06-27 Thread Terry B
what is the difference between $t("div.TimelineContainer") and $t("#TimelineContainer") within JQuery? is the first using byid and the other by tagname?

[jQuery] Re: Interface - Resizable by x pixels

2007-06-27 Thread Terry B
bump

[jQuery] Interface - Resizable by x pixels

2007-06-26 Thread Terry B
Ok, i didnt see it in the docs, but I want to set the movement to be in blocks of x pixels. similiar to dragables grid movement. can this be done with the current plugin or will I just have to settle to use the onstop function and snap it to the correct pixel? ie from my code here: w: "#event_

[jQuery] Re: Noob here, please help

2007-06-11 Thread Terry B
the LI have a float on them and the DIV does not. > (this is only happening in IE) > > Ben > > On 6/11/07, Terry B <[EMAIL PROTECTED]> wrote: > > > > > > > > > Ok, so here is the page: > >http://www.tcbader.com/conf/ > > > Why us m

[jQuery] Noob here, please help

2007-06-11 Thread Terry B
Ok, so here is the page: http://www.tcbader.com/conf/ Why us my content to the right and not below the tabs like the example page here: http://www.tcbader.com/conf/%5Fjs/jquery%2Dtabs/ What am I missing? Hope this makes it to the list...