[jQuery] Re: jQuery solutions needed...

2007-06-26 Thread Gilles (Webunity)
And i am also creating some widgets (including the unobtrusive combobox) for jQuery http://groups.google.com/group/jquery-en/browse_thread/thread/4ebf9924c0a33ac4

[jQuery] Re: Draggables in jQuery

2007-06-26 Thread Gilles (Webunity)
Drag yes, drop no ;) http://dev.iceburg.net/jquery/jqDnR/

[jQuery] Re: Quick question...

2007-06-26 Thread Erik Beeson
The html function is synchronis, it should be done before it returns. What isn't working about it? Could you setup a sample page, or include a complete example of the code that you're using? --Erik On 6/26/07, Trav Johnston <[EMAIL PROTECTED]> wrote: Hi, I need to find the height of a div

[jQuery] Re: var this question

2007-06-26 Thread Jean
undertood, thanks ;D On 6/26/07, Jeffrey Kretz <[EMAIL PROTECTED]> wrote: The "this" keyword depends on the context of the function you are calling. var valor = $('#num_resp').val(); $('#num_resp').blur(function() { alert(valor); }); This would work, although it would only show the initial v

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-26 Thread Mike Alsup
Ganeshji, Remember to check the box model before blindly adding the margin values. You can use the jQuery.boxModel property to check the browser's impl. Mike On 6/26/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: no problem brandon, i seems like, i just have to add margin-left and margin-

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread DaveG
Looks like example 3 does the rotating you seek... weepy wrote: i've tried excanvas and it works very well indeed - amazing in fact when you think what its doing. it runs a bit slower on ie check some demos here : http://labs.parkerfox.co.uk/excanvas/examples/

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-26 Thread Ganeshji Marwaha
no problem brandon, i seems like, i just have to add margin-left and margin-height properties. its all well, as long as there is some solution... :) On 6/26/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: Sorry I thought you where looking for offsetWidth which is what outerWidth method does. -- B

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-26 Thread Brandon Aaron
Sorry I thought you where looking for offsetWidth which is what outerWidth method does. -- Brandon Aaron On 6/26/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: thanks glen... but i don't completely agree, because technically, according to the box model, width does not include border, padding,

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-26 Thread Ganeshji Marwaha
thanks glen... but i don't completely agree, because technically, according to the box model, width does not include border, padding, margin etc. But the total box's width, (not the element's width property) accounts for width+border+padding+margin. This is how a box is seen by the browser AFAIK.

[jQuery] Load into tbody, errors IE6

2007-06-26 Thread Josh Nathanson
Hey all, I have a script that does an ajax load into a tbody jQuery object, like so: $tbl = $("#" + asp + "_tbody"); // dynamically finds tbody $tbl.load("prodsched/dom_dpdcolorrow.html", {}, addrow ); // load html content (tr's) into tbody The html file consists of a table row wi

[jQuery] Re: Scrolling Text (Headlines) and/or Marquee in Jquery?

2007-06-26 Thread Glen Lipka
http://docs.jquery.com/Tutorials:Scroll_Up_Headline_Reader I always liked this one. I have used it several times. Glen On 6/26/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: newsticker works for me: http://www.texotela.co.uk/code/jquery/newsticker/ ~Sean

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-26 Thread Glen Lipka
But margin shouldn't be included in width. According to box model that is outside the box. http://www.w3.org/TR/REC-CSS2/box.html Hmm, is there something that computes it all? http://www.redmelon.net/tstme/box_model/ <-- not helpful but cool to play with. You could do it on your own, offset +

[jQuery] Re: Scrolling Text (Headlines) and/or Marquee in Jquery?

2007-06-26 Thread Sean Catchpole
newsticker works for me: http://www.texotela.co.uk/code/jquery/newsticker/ ~Sean

[jQuery] Re: jQuery solutions needed...

2007-06-26 Thread John Farrar
Pretty cool... is it "skin-able"? Alexandre Plennevaux wrote: Hi John, I believe jScrollpane should be in this tight list. It's very customisable, fast and easy setup, feels responsive, renders fastly and degrades gracefully: http://www.lab-au.com/v1/index.php?section=news And some day, my jq

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-26 Thread Ganeshji Marwaha
hey, thanks for putting together a demo page in no time... Still, in your settings the margin is not included. When i include the margin, the outerWidth returns the result excluding the margin. :(( - GTG On 6/26/07, Glen Lipka <[EMAIL PROTECTED]> wrote: http://www.commadot.com/jquery/dimensio

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-26 Thread Ganeshji Marwaha
brandon, no luck buddy... outerHeight returns the result that excludes the margin values of the element. i would like the width of the element including the margin values as well... -GTG On 6/26/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: thanks brandon... lemme try that now i will

[jQuery] Re: jQuery solutions needed...

2007-06-26 Thread Rey Bango
Hi John, What I've done is show you a list of plugins that seem to target what you want. Now you need to flush out what's missing and articulate that. Rey... John Farrar wrote: Rey Bango wrote: Hi John, Ext definitely has a great look to its widgets. There are controls though that meet

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-26 Thread Glen Lipka
http://www.commadot.com/jquery/dimensions/ Im too slow. But I made a little test page to see what outputs what. Change the settings in firebug and click the box. Glen On 6/26/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: thanks brandon... lemme try that now i will keep u posted on how it

[jQuery] Scrolling Text (Headlines) and/or Marquee in Jquery?

2007-06-26 Thread Scott Sharkey
Hi All, I'm looking for a decent scrolling (vertical, multiline) headline plugin, and a horizontal marquee scroller, both as jquery plugins. I've been playing with jCarousel, but it seems to be graphics only, and just plain does not work for me, plus the doc's seem wrong. Any suggestions w

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-26 Thread Ganeshji Marwaha
thanks brandon... lemme try that now i will keep u posted on how it goes... On 6/26/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: You need to use the outerWidth and outerHeight methods of the Dimensions plugin. The width and height just return the actual width and height according to the box

[jQuery] Quick question...

2007-06-26 Thread Trav Johnston
Hi, I need to find the height of a div "after" the ajax response has been dumped into it. $('#target').html(msg); var current_height = $('#target').height(); This doesn't work. I would like to use. $('#target').html(msg,function(){ var current_height = $('#target').height(); }); Bu

[jQuery] Re: Function to Check if a String Contains a Word

2007-06-26 Thread Mike Alsup
You don't need jQuery to determine if a string contains a word. That functionality is built into JavaScript. There are many ways to achieve this with Strings or Regular Expressions. One or many resources: http://www.w3schools.com/js/js_obj_string.asp Mike On 6/26/07, cfdvlpr <[EMAIL PROTECTE

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-26 Thread Brandon Aaron
You need to use the outerWidth and outerHeight methods of the Dimensions plugin. The width and height just return the actual width and height according to the box model. -- Brandon Aaron On 6/26/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: thanks glen, but dimensions also return the same r

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-26 Thread Ganeshji Marwaha
thanks glen, but dimensions also return the same result as does jquery's height() and width() method... I checked dimesion's source and it seems to delegate the call to jquery core's width() / height() method, if the call was not for document or window. So, still i am getting the width and heig

[jQuery] Re: Function to Check if a String Contains a Word

2007-06-26 Thread Glen Lipka
From API. $("p").contains("test") HTML: This is just a test.So is this Result: [ This is just a test. ] http://www.visualjquery.com or http://www.jquery.com On 6/26/07, cfdvlpr <[EMAIL PROTECTED]> wrote: I'm a Coldfusion developer and I know there's a CF function CONTAINS to do this. I

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-26 Thread Glen Lipka
Are you using the dimensions plugin? It might be worth using. Alot of plugins depend on it. Glen On 6/26/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: friends, In the process of developing this jCarouselLite plugin, i am facing a problem. When i retrieve the width or height of an element t

[jQuery] Function to Check if a String Contains a Word

2007-06-26 Thread cfdvlpr
I'm a Coldfusion developer and I know there's a CF function CONTAINS to do this. Is there an equivalent function in Jquery?

[jQuery] Re: jQuery solutions needed...

2007-06-26 Thread Alexandre Plennevaux
Hi John, I believe jScrollpane should be in this tight list. It's very customisable, fast and easy setup, feels responsive, renders fastly and degrades gracefully: http://www.lab-au.com/v1/index.php?section=news And some day, my jqUploader plugin will be set for battle :) Cheers, Alexandre

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-26 Thread Ganeshji Marwaha
friends, In the process of developing this jCarouselLite plugin, i am facing a problem. When i retrieve the width or height of an element that has a margin associated with it, then the returned width/height does not take the margin into account. Can anyone help me here? Thanks -GTG On 6/26/07

[jQuery] Re: jQuery solutions needed...

2007-06-26 Thread John Farrar
Rey Bango wrote: Hi John, Ext definitely has a great look to its widgets. There are controls though that meet most of these needs: 1. Tree (like the one in EXTjs) Nice proof of concept... needs more to be EXTjs ready . (Drag n Drop is amazing in EXT, just to name one difference that is a

[jQuery] Re: Loosing access to 'this' objects in callback method!

2007-06-26 Thread Glenn Knowles
Hi Nate, Thanks again for your reply. You've supplied some good resources and explanations, and I'm getting a better understanding. However, each time I 'think' I've got it, I come across a situation that just proves I don't. It's going to be a struggle, but I'm determined to get to the 'p

[jQuery] Re: toggle min/max effect

2007-06-26 Thread [EMAIL PROTECTED]
Doh! Ya, I guess you're right, that works too: $("#area p,span").not("#nonClick").click(function(){ alert("it worked"); };) Matthew, Thanks again. On Jun 26, 12:16 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > Wouldn't the comma be easier? > $("#area p,span") > > Glen > > On 6/26/07, [EMAIL

[jQuery] Re: Sortables popping out of container

2007-06-26 Thread jsummers
I have spent quite a bit of time trying to figure this out with very little success. Like many others I am hoping to figure out how to have a list of sortables with sortabels inside each one. So say sortable sections with sortable items in each section. Then I would like to be able to sort se

[jQuery] Re: Randomly insert one of a pre-defined HTML extracts?

2007-06-26 Thread Glen Lipka
I agree. I was stretching his original intent. :) Glen On 6/26/07, Scott Sauyet <[EMAIL PROTECTED]> wrote: Glen Lipka wrote: > Scott, I can think of a couple reasons for this. > Let's say you want to scroll some facts or quotes or customer testamonials across the screen, but you also want to

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-06-26 Thread RhythmFighter
RackSpace is also using jQuery for their customer portal: https://my.rackspace.com/portal/ On May 3, 3:43 pm, Rey Bango <[EMAIL PROTECTED]> wrote: > Just a quick reminder to everyone that the list ofsitesusing jQuery > continues to grow at an amazing rate. Check out thesitesat: > > http://docs.jq

[jQuery] Re: How to show/add content under a row in a table

2007-06-26 Thread Brad Perkins
I recently did something like this. I need to be able to dynamically insert new rows into a columnar form. I've stripped out a lot of the code but hopefully this will give you some ideas var clicked_row = $(...); // jQuery object. Clicked Row. You'll need to specify the selector var new_row = $('

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Su
On 6/26/07, Aaron Heimlich <[EMAIL PROTECTED]> wrote: On 6/26/07, Su <[EMAIL PROTECTED]> wrote: > > swfIR? > http://www.swfir.com/ > swfIR, IIRC, is geared towards text, though. The only way I know of to do image rotation in JavaScript is with That's sIFR: http://www.mikeindustries.com/sifr/

[jQuery] Re: Randomly insert one of a pre-defined HTML extracts?

2007-06-26 Thread Scott Sauyet
Glen Lipka wrote: Scott, I can think of a couple reasons for this. Let's say you want to scroll some facts or quotes or customer testamonials across the screen, but you also want to start at a random one. That sort of thing. Or scrolling images. Oh, I can see plenty of reasons for choosin

[jQuery] Re: How to show/add content under a row in a table

2007-06-26 Thread Glen Lipka
You can't exactly put stuff in between 's. However, there are other strategies. One that I have used is this: Title1 MESSAGE Title1 MESSAGE Then I do $("tr:even").hide(); Then when you run your ajax thing. $(this).parents("tr").next("tr").show() Some grids are very very complex. Any client-s

[jQuery] Re: jQuery solutions needed...

2007-06-26 Thread Rey Bango
Hi John, Ext definitely has a great look to its widgets. There are controls though that meet most of these needs: 1. Tree (like the one in EXTjs) http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ 2. Grid (like the one in EXTjs) http://ideamill.synaptrixgroup.com/?p=7 3. Windo

[jQuery] How to show/add content under a row in a table

2007-06-26 Thread Massimiliano Marini
Hi all, I've lost the post and/or the link, but if I don't remember wrong, there's a solution to my question (I hope). I've a table that show a list of title like this: Title1 Title2 ... I want to display (by an ajax request, but this is not the problem) the messagge under the row that I've c

[jQuery] Re: Randomly insert one of a pre-defined HTML extracts?

2007-06-26 Thread Glen Lipka
psuedo code: var totalDivLength = $("div").length; var randomnumber = Math.floor(Math.random()*totalDivLength) $("div")[randomnumber].show() Scott, I can think of a couple reasons for this. Let's say you want to scroll some facts or quotes or customer testamonials across the screen, but you also

[jQuery] Re: jQuery solutions needed...

2007-06-26 Thread John Resig
I compiled a list similar to this a week ago, with viable solutions. There's a couple areas that we're hurting on (Tree, Grid, Layout, WYSIWYG), but other than that, we're pretty well off. Not bad for a community grown from the ground up: http://docs.jquery.com/Widgets --John On 6/26/07, John F

[jQuery] var this question

2007-06-26 Thread Jean
I´m with problems trying use variables like this var valor = $(this).val(); $("#num_resp").blur(function(){ alert(valor); }); Why dont work? What is the correct way? Couze that works $("#num_resp").blur(function(){

[jQuery] Re: Randomly insert one of a pre-defined HTML extracts?

2007-06-26 Thread Scott Sauyet
zarino wrote: Is it possible to use jQuery to choose an extract of HTML (for example one div out of a possible ten to choose from) and insert it in a page? It's doable. Check out http://tinyurl.com/fspg5 for information on using Javascript's implementation of a "random()" function. But thi

[jQuery] Re: FrameReady Help

2007-06-26 Thread StarGate
i do use Firebug, and it says nothing ! And $.load(... changes nothing, still no loading On Jun 26, 10:22 pm, "Erik Beeson" <[EMAIL PROTECTED]> wrote: > You're calling a function called 'load'. Maybe you mean to call > $.load(...)? The "here" alert probably isn't firing because you > probably d

[jQuery] Re: jQuery solutions needed...

2007-06-26 Thread Glen Lipka
Yeah, a bunch of those exist. I'd like to see a comboBox plugin like ExtJs. http://extjs.com/deploy/ext/examples/form/combos.html And course my dream easeBox plugin. Working on it. You should vote for the plugins that exist that are on your list. Give positive reinforcement to the authors. ht

[jQuery] Re: Attach "success" to jquery.rating

2007-06-26 Thread Sebastián V. Würtz
Gilles (Webunity) escribió: A plugin by John Resig and badly implemented? Hardly i guess.. Try this, i don't know if that works, but seems more logical to me. $('form.rating').rating( { success: function() { alert("ASD"); } } ); You could also take a look at: http://sandbox.wilstuckey.com/jquer

[jQuery] Re: FrameReady Help

2007-06-26 Thread StarGate
im using firebug, and nothing changes when i use $.load(. On Jun 26, 10:22 pm, "Erik Beeson" <[EMAIL PROTECTED]> wrote: > You're calling a function called 'load'. Maybe you mean to call > $.load(...)? The "here" alert probably isn't firing because you > probably don't have a function called

[jQuery] Randomly insert one of a pre-defined HTML extracts?

2007-06-26 Thread zarino
Hi! Is it possible to use jQuery to choose an extract of HTML (for example one div out of a possible ten to choose from) and insert it in a page? I'd like to create a repository of 'facts' and have jQuery serve up a different fact at random with each page-load. I've searched and searched the we

[jQuery] jQuery solutions needed...

2007-06-26 Thread John Farrar
The intention of this post is to spark a plug-in dream list. Here's mine... 1. Tree (like the one in EXTjs) 2. Grid (like the one in EXTjs) ... if your wondering, I want to do server side markup, and modify only when needed. :) 3. Windows component. (Popup divs rather than windows that are sel

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Aaron Heimlich
On 6/26/07, Erik Beeson <[EMAIL PROTECTED]> wrote: You misunderstand. It's a javascript file that you include on your page just like jQuery. It's no more "installed" than jQuery. Just fine for general public use. Well then, I stand corrected. -- Aaron Heimlich Web Developer [EMAIL PROTECTED]

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Scott Trudeau
It's a javascript script, not a plug-in. On 6/26/07, Aaron Heimlich <[EMAIL PROTECTED]> wrote: On 6/26/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: > r u kidding... IE doesnt... excanvas simulates canvas behavior in IE. Which goes back to what I said about their not being enough browser sup

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Erik Beeson
> r u kidding... IE doesnt... excanvas simulates canvas behavior in IE. Which goes back to what I said about their not being enough browser support for the effort to be worthwhile (ON PUBLIC FACING WEB SITES). If you can convince your IE users to download and install excanvas, then more power t

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Erik Beeson
Replicates canvass support in IE6. Anyone use it? Does it work well? Yes I do. Yes it does. No clipping, no patters, but all the basic stuff is there and works pretty well. You heard it here first: canvas will be the next big thing, like AJAX was. XHR was around for a long time before the w

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Aaron Heimlich
On 6/26/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: r u kidding... IE doesnt... excanvas simulates canvas behavior in IE. Which goes back to what I said about their not being enough browser support for the effort to be worthwhile (ON PUBLIC FACING WEB SITES). If you can convince your IE u

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread weepy
i've tried excanvas and it works very well indeed - amazing in fact when you think what its doing. it runs a bit slower on ie check some demos here : http://labs.parkerfox.co.uk/excanvas/examples/

[jQuery] Re: FrameReady Help

2007-06-26 Thread Erik Beeson
You're calling a function called 'load'. Maybe you mean to call $.load(...)? The "here" alert probably isn't firing because you probably don't have a function called 'load', so execution is halting there. The FireBug extension for firefox would help you identify javascript errors like this. --E

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Brandon Aaron
Check out the excanvas project: http://excanvas.sourceforge.net/ -- Brandon Aaron On 6/26/07, Aaron Heimlich <[EMAIL PROTECTED]> wrote: Since when does IE have native support? On 6/26/07, Erik Beeson <[EMAIL PROTECTED]> wrote: > > > > JavaScript is with [1] or SVG[2], both of which don't hav

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Scott Trudeau
Reportedly, this script: http://sourceforge.net/projects/excanvas Replicates canvass support in IE6. Anyone use it? Does it work well? Scott On 6/26/07, Aaron Heimlich <[EMAIL PROTECTED]> wrote: Since when does IE have native support? On 6/26/07, Erik Beeson <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Ganeshji Marwaha
r u kidding... IE doesnt... excanvas simulates canvas behavior in IE. On 6/26/07, Aaron Heimlich <[EMAIL PROTECTED]> wrote: Since when does IE have native support? On 6/26/07, Erik Beeson <[EMAIL PROTECTED]> wrote: > > > > JavaScript is with [1] or SVG[2], both of which don't have > enough br

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Aaron Heimlich
Since when does IE have native support? On 6/26/07, Erik Beeson <[EMAIL PROTECTED]> wrote: > JavaScript is with [1] or SVG[2], both of which don't have enough browser support to Huh? Canvas works on IE6 (with excanvas), IE7, FF since 1.x, Safari and Opera. What other browsers are you looking

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Erik Beeson
JavaScript is with [1] or SVG[2], both of which don't have enough browser support to Huh? Canvas works on IE6 (with excanvas), IE7, FF since 1.x, Safari and Opera. What other browsers are you looking for? --Erik

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Aaron Heimlich
On 6/26/07, Su <[EMAIL PROTECTED]> wrote: swfIR? http://www.swfir.com/ swfIR, IIRC, is geared towards text, though. The only way I know of to do image rotation in JavaScript is with [1] or SVG[2], both of which don't have enough browser support to make the effort worthwhile (assuming you're d

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Matt Stith
Thats not exactly something you want javascript doing, thats more of a server-side thing. Are you using php? On 6/26/07, cfdvlpr <[EMAIL PROTECTED]> wrote: Is there any plugin that will rotate an image 90 degrees? Something tells me this is difficult if not impossible to do.

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-26 Thread Su
swfIR? http://www.swfir.com/ Not jQuery at all, but if you're asking for one effect, you're probably going to end up looking for others, so... On 6/26/07, cfdvlpr <[EMAIL PROTECTED]> wrote: Is there any plugin that will rotate an image 90 degrees? Something tells me this is difficult if not

[jQuery] Re: Select value

2007-06-26 Thread Jean
Sorry i already found LOL change is the answer =p sorry for this On 6/26/07, Jean <[EMAIL PROTECTED]> wrote: Yes but how i get the value when the user select another option? What I´m trying to say is when the user select some option i need to add some html after, understood? This give the valu

[jQuery] Re: Select value

2007-06-26 Thread Jean
Yes but how i get the value when the user select another option? What I´m trying to say is when the user select some option i need to add some html after, understood? This give the value but i need to know wich event i use. On 6/26/07, Glen Lipka <[EMAIL PROTECTED]> wrote: $("select option:sele

[jQuery] Re: var this question

2007-06-26 Thread Jeffrey Kretz
The "this" keyword depends on the context of the function you are calling. var valor = $('#num_resp').val(); $('#num_resp').blur(function() { alert(valor); }); This would work, although it would only show the initial value of the element, not the current value. Possibly "this" is referring to t

[jQuery] Re: Fw: slide and radio button state

2007-06-26 Thread Gareth Hughes
Cool, thanks. Actually, it looks like I've found a solution without having to revert to an old version. If I preceed .slidDown() with .show() then the radio state is maintained. In other words I've changed: targetContent.slideDown(300); to targetContent.show().slideDown(300); I still get th

[jQuery] How to Rotate an Image 90 Degrees

2007-06-26 Thread cfdvlpr
Is there any plugin that will rotate an image 90 degrees? Something tells me this is difficult if not impossible to do.

[jQuery] Re: Need to hide all elements

2007-06-26 Thread Ganeshji Marwaha
$("div:not(.content)").hide(); On 6/26/07, SimDigital <[EMAIL PROTECTED]> wrote: I need to hide all html elements inside , except a div named content, but don't know how to do that. Example original content: My Slogan Full text about my site After transform: My Slogan Full text about

[jQuery] FrameReady Help

2007-06-26 Thread stargate
Hello, i do define a iframe on a page like this: marginwidth="0" height="90%" width="90%"> so i dont initialy define a src for this iframe. in a js function i do fire frameready like this: $.frameReady(function(){ load("loadmodule.cgi",POSTParam,function(){ alert("done"); }); alert("here

[jQuery] FrameReady Help

2007-06-26 Thread stargate
Hello, i do define a iframe on a page like this: marginwidth="0" height="90%" width="90%"> so i dont initialy define a src for this iframe. in a js function i do fire frameready like this: $.frameReady(function(){ load("loadmodule.cgi",POSTParam,function(){ alert("done"); }); alert("here

[jQuery] FrameReady Help

2007-06-26 Thread stargate
Hello, i do define a iframe on a page like this: marginwidth="0" height="90%" width="90%"> so i dont initialy define a src for this iframe. in a js function i do fire frameready like this: $.frameReady(function(){ load("loadmodule.cgi",POSTParam,function(){ alert("done"); }); alert("here

[jQuery] Re: Need to hide all elements

2007-06-26 Thread Jake McGraw
$("div.content").siblings().hide(); On 6/26/07, SimDigital <[EMAIL PROTECTED]> wrote: I need to hide all html elements inside , except a div named content, but don't know how to do that. Example original content: My Slogan Full text about my site After transform: My Slogan Full text a

[jQuery] Re: Interface shopping cart - how to insert in DB

2007-06-26 Thread Jeffrey Kretz
The draggable/droppable functions in Interface have events you can subscribe to. The one you would need is ondrop. It would look something like this: $('elements').Droppable ( { accept : 'dropZone', ondrop : updateCart } ); function updateCart(dragged) { var info = $(drag

[jQuery] Re: $.post to submit form data?

2007-06-26 Thread Ganeshji Marwaha
$.post takes a request string (separated by "&"), or a json for parameters to be passed to the server. you won't be able to form a form element. if you want to go thru the pain of finding all the form elements and their values, then i would recommend looking into ajax form plugin. http://www.malsu

[jQuery] Re: TortoiseSVN help?

2007-06-26 Thread Rey Bango
Hi Josh, I use Tortoise as well. Do this: 1) Create a new folder where you want to dump the jQuery stuff into 2) Right click on the folder and click on "SVN Checkout..." 3) In "URL for Repository" enter http://jqueryjs.googlecode.com/svn/trunk 4) Click the "Ok" button That should bring down th

[jQuery] Re: TortoiseSVN help?

2007-06-26 Thread Rey Bango
Hi Josh, I use Tortoise as well. Do this: 1) Create a new folder where you want to dump the jQuery stuff into 2) Right click on the folder and click on "SVN Checkout..." 3) In "URL for Repository" enter http://jqueryjs.googlecode.com/svn/trunk 4) Click the "Ok" button That should bring down th

[jQuery] Re: Select value

2007-06-26 Thread Glen Lipka
$("select option:selected").value(); Is this what you mean? Glen On 6/26/07, Jean <[EMAIL PROTECTED]> wrote: Well i know this is some newbie question but i´m stuck in this how can i get the select option value?? Tipo resposta: tipo; ?> i have to get the values to append the right tag f

[jQuery] $.post to submit form data?

2007-06-26 Thread vince
Another problem I am having. I have tried using jQuery's $.post function from within a form. i.e: onclick="$.post(\'login.php\', this.form ,function(data) { document.getElementById(\'login_container\').innerHTML = data; }) ; which ... kind of works on the other end I have: if (isset($_POST['

[jQuery] Re: TortoiseSVN help?

2007-06-26 Thread Scott Sauyet
JoshN wrote: I'm using TortoiseSVN, and I'm an SVN noob so bear with me... I tried to import from here: http://jqueryjs.googlecode.com/svn/trunk [ ... ] This is probably just a terminology issue. "Import" to Subversions mind, means loading initial data into the repository. If you want to g

[jQuery] Re: Fw: slide and radio button state

2007-06-26 Thread rolfsf
I encountered this problem a while back, and from what I remember, we found that we could get around the problem by using visibility:hidden instead of display:none for IE... I'll try and find the exact scenario. If I remember correctly, it was the display:none that reset the radio button states i

[jQuery] Copying certain elements to the clipboard

2007-06-26 Thread drooze
Is there a way to copy the current objects contained by the jquery object to the clipboard?

[jQuery] Tooltip function not working

2007-06-26 Thread [EMAIL PROTECTED]
Am I doing something wrong, or does the tooltip plugin not work with the latest jQuery? I have it loaded on my site, and the only code I have is: $('a.showtip').Tooltip({ track: true, delay: 0 }); The hover doesn't show in FF or IE, and I get an error in

[jQuery] Re: Fw: slide and radio button state

2007-06-26 Thread Gareth Hughes
Thanks Dan, at least I don't feel all alone now :) @Mike, yes it looks like the same thing. By mistake, I just checked the behaviour using jQuery 1.1 (Rev: 1073) (I was using 1.2 before) and the radio button state IS maintained in IE (and FF). I'm not exactly keen on the idea but nothing else

[jQuery] Need to hide all elements

2007-06-26 Thread SimDigital
I need to hide all html elements inside , except a div named content, but don't know how to do that. Example original content: My Slogan Full text about my site After transform: My Slogan Full text about my site Then i could transform again and the original content bring back. Somebod

[jQuery] Select value

2007-06-26 Thread Jean
Well i know this is some newbie question but i´m stuck in this how can i get the select option value?? Tipo resposta: tipo; ?> i have to get the values to append the right tag for the answer -- []´s Jean www.suissa.info Ethereal Agency www.etherealagency.com

[jQuery] Interface shopping cart - how to insert in DB

2007-06-26 Thread Web Specialist
Hi all. Interface haves a very cool shopping cart example in http://interface.eyecon.ro/demos/cart.html My question: how can I reference that selected products in shopping basket to insert in database? I didn't see any form field in source code for that example. Cheers

[jQuery] TortoiseSVN help?

2007-06-26 Thread JoshN
Hey all, I'm using TortoiseSVN, and I'm an SVN noob so bear with me... I tried to import from here: http://jqueryjs.googlecode.com/svn/trunk But, it requested a username and password...I tried my Google login but it didn't work...what do I need to do to get it working? Do I need to signup with

[jQuery] Re: Validate() and TinyMCE problem

2007-06-26 Thread Jörn Zaefferer
Diego A. wrote: Sorry about the delay... I took long to reply because I've been away on holiday. Here's a little something I've put together: http://www.fyneworks.com/jquery/FCKEditor/ Let me know what you think! Looks good. It wouldn't hurt to provide explicit methods for init and update.

[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: jQuery for GreaseMonkey

2007-06-26 Thread Joan Piedra
Hey Sean At last you did dare to port 1.1.2 to GM! Gratz man. Love to see this work done. Cheers, On 6/23/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: Hey Michael, If you code is inside of the usual $(function(){...}) then it will not exectute. I have not changed over v1.1.2 to Greasemonk

[jQuery] Re: toggle min/max effect

2007-06-26 Thread Glen Lipka
Wouldn't the comma be easier? $("#area p,span") Glen On 6/26/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I was trying to use the Logical Operator "OR" ("||") but could only get it to work with one pipe ("|"). Simple I wanted to say when either the "#area p" OR "span" tag is clicked run

[jQuery] Re: TreeView with "Checkbox Tree"

2007-06-26 Thread Jörn Zaefferer
Mario Moura wrote: Yes, Jörn Will be a good addon to treeview. About Christof email if just add the checkboxes to the -Tag will work? Should I re-create my tree from my select form using or How about this? Blah -- Jörn Zaefferer http://bassistance.de

[jQuery] Re: toggle min/max effect

2007-06-26 Thread [EMAIL PROTECTED]
I was trying to use the Logical Operator "OR" ("||") but could only get it to work with one pipe ("|"). Simple I wanted to say when either the "#area p" OR "span" tag is clicked run the code. CDATA is the XML way of escaping. Essentially, everything inside a CDATA section is ignored by the pars

[jQuery] Re: Possible bug on button click event

2007-06-26 Thread Ganeshji Marwaha
no way... u r probably doing something wrong... The problem could be that you are attaching click() event to the button in multiple places in the code. This can usually happen, when you have multiple js files and unknowingly attach the event twice. This is not the same as button.onclick = functio

[jQuery] Re: Drop event

2007-06-26 Thread Erik Beeson
That's just the position of the draggable (which you've called 'droppped'), right? Maybe: $(dropped).css('left') and $(dropped).css('top'). Or you could use a function on the onDrag event of the draggable that updates some local variables to save the last position: var x; var y; $(...).Draggable

[jQuery] Re: toggle min/max effect

2007-06-26 Thread Su
On 6/26/07, Su <[EMAIL PROTECTED]> wrote: On 6/26/07, Glen Lipka <[EMAIL PROTECTED]> wrote: > > Also, what is the reason for > /*

  1   2   >