[jQuery] Re: jQuery Curvy Corners Update - v1.6

2008-07-14 Thread duck!
I can't help but think that supporting Firefox and Safari is a but of a waste. Surely a developer would be better off doing something like this: -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; ...and using curvy corners in a similar manner to png or

[jQuery] Re: PLUGIN: prettyPhoto v2.1.1 a jQuery lightbox clone released

2008-07-14 Thread Matthieu BARBE
nice plugin ! Good job Rey ! 2008/7/14 Rey Bango <[EMAIL PROTECTED]>: > > prettyPhoto v2.1.1 a jQuery lightbox clone released > > http://www.no-margin-for-errors.com/projects/prettyPhoto/ >

[jQuery] using live query howto

2008-07-14 Thread Tom Shafer
i am trying to use live query to bind a click to a href on a form submit $("#addLinks").submit(function() { $('#addLinks') .livequery('onclick', function(event) { deleteitem(); }); $.post("addLinks.php",{ step:'addLink',title:$ ('#title').v

[jQuery] Re: Follow scrolling

2008-07-14 Thread Vez
You may want to reconsider CSS. You can use inline CSS and even apply it with jQuery. $('#statusbox').css({position: 'fixed', top: 0}) On Jul 14, 8:31 pm, agileteks <[EMAIL PROTECTED]> wrote: > Does anyone have an example of a simple follow scrolling written in > jQuery? I need to have a status

[jQuery] Re: Calling PHP Functions from jQuery?

2008-07-14 Thread Mario Wolff
On 14 Jul., 16:11, Yavuz Bogazci <[EMAIL PROTECTED]> wrote: > is it possible to call php functions from jquery? My way: PHP: JS: $.getJSON( 'helper.php', { protocol:'jsonrpc', version:'1.0', 'function':'myfunc', 'parameter[id]':'4711', 'pa

[jQuery] Fading images with jQuery

2008-07-14 Thread viewsonic712
Hi, I would like to fade 4 images with jQuery, 1.jpg, 2.jpg. 3.jpg. and 4.jpg I have the following code, but no luck yet :( $(document).ready(function(){ for(i=1; i<=4; i++) { $("#app").html("") $("#app").fadeIn("slow");

[jQuery] Re: How to queue up ajax requests?

2008-07-14 Thread Shawn
What I did was to build an object that would hold the results of each ajax request. I added on a function that would check when all the objects were populated, and then call the routine that would handle all the data. Something like this (note I'm NOT using the ajax_queue plugin): var ajax

[jQuery] Follow scrolling

2008-07-14 Thread agileteks
Does anyone have an example of a simple follow scrolling written in jQuery? I need to have a status box that is floating with the page when user scrolling. CSS is not a solution since this page will be integrated to another page. If anyone has some code sample, please let me know. Thank you so muc

[jQuery] How to queue up ajax requests?

2008-07-14 Thread partner56290674
Hi folks, can anyone help me with some links to queuing up ajax requests using jQuery please? I tried using the Ajax Queue plug-in (http:// plugins.jquery.com/project/ajaxqueue) but this wasn't much help (errors). is queuing now built into jQuery core? cheers! -me-

[jQuery] Re: Plugin accessor method?

2008-07-14 Thread Ariel Flesler
You can use this plugin as a possible approach. jQuery.Modularize http://flesler.blogspot.com/2008/04/jquerymodularize.html -- Ariel Flesler http://flesler.blogspot.com/ On 14 jul, 22:01, Shawn <[EMAIL PROTECTED]> wrote: > I've built myself a custom plugin that works nicely, but I have one >

[jQuery] Plugin accessor method?

2008-07-14 Thread Shawn
I've built myself a custom plugin that works nicely, but I have one (maybe two) little sticking points My plugin takes the form like this: (function ($) { $.fn.myPlugin = function (options) { return this.each( function () { $(this).data("myValue", "some_value");

[jQuery] jqmodal positioning from within iframed page

2008-07-14 Thread Tiancheng Zhu
has anyone tried to load a page within an iframe and pop open a jqmodal within the iframed page? I'm trying to center the modal in the middle of the window of the browser, but if your iframed page is really low and extends below the fold of the browser window, then the modal will open in the midd

[jQuery] Re: show hidden div on click

2008-07-14 Thread Smith, Allex
Here is how I would approach this: JavaScript $(document).ready(function(){ $('.fadein').click(function(){ // Make the id overview show $('#overview').show('slow'); // override default a behavior

[jQuery] Re: Calling PHP Functions from jQuery?

2008-07-14 Thread Kevin Pepperman
I think this plugin does what you are looking for: http://plugins.jquery.com/project/EUReCa On Mon, Jul 14, 2008 at 10:11 AM, Yavuz Bogazci <[EMAIL PROTECTED]> wrote: > > Hi, > > is it possible to call php functions from jquery? I knew how to call > a .php page from jquery with $.post and to ech

[jQuery] Re: show hidden div on click

2008-07-14 Thread Kevin Pepperman
without seeing all your code... The main thing I see wrong here is you are calling your fadin() function with an unneeded argument that is also a string that is not encased by quotes. The argument is not required for your function at all-- So try this: Overview If you DO need the argument for

[jQuery] Re: show hidden div on click

2008-07-14 Thread Giovanni Battista Lenoci
David J Bauer ha scritto: Note that in the CSS I have visibility as hidden: is that a problem? Use display:none :-) bye -- gianiaz.net - web solutions p.le bertacchi 66, 23100 sondrio (so) - italy +39 347 7196482

[jQuery] show hidden div on click

2008-07-14 Thread David J Bauer
n00b here attempting to implement a simple jQuery function: I want to slowly show (fade in) a hidden division after clicking a text anchor (link). I've managed to get some jQuery plugins working correctly, but coding something myself is apparently beyond my current capabilities. :P Here is the s

[jQuery] strange event problem

2008-07-14 Thread jmif96
I have CSS tabs setup on my website, and I have attempted to integrate them with a jQuery menu system that I have attempted to write. It works fine in IE (strangely), but in Firefox there are some strange bugs. The website is http://northvillebasketball.com. Only the second, third and fourth ta

[jQuery] Re: Filter input chars and check full value of input field

2008-07-14 Thread Paul Menard
Well nevermind. It didn't hit me to that I can use both events and put the filter in on an the logic to enable/disable the select in the other event. D'OH! Sorry for the post. P- On Jul 14, 3:44 pm, Paul Menard <[EMAIL PROTECTED]> wrote: > Hey all. Having a little trouble getting this to work. >

[jQuery] Re: jScrollPane with jQuery 1.2.6

2008-07-14 Thread Sam Sherlock
I am using jscrollpane with 1.2.6 I have made no modifications to the source no troubles I had some wierdness which was solved by loading style before scripts in the head of the document 2008/7/14 samer <[EMAIL PROTECTED]>: > > could you send me your version jScrollPane > > On Jul 14, 11:17 am,

[jQuery] PLUGIN: prettyPhoto v2.1.1 a jQuery lightbox clone released

2008-07-14 Thread Rey Bango
prettyPhoto v2.1.1 a jQuery lightbox clone released http://www.no-margin-for-errors.com/projects/prettyPhoto/

[jQuery] Re: PLUGIN: jQuery Column Filters

2008-07-14 Thread Jean
Very nice! On Mon, Jul 14, 2008 at 6:30 PM, Rey Bango <[EMAIL PROTECTED]> wrote: > > jQuery Column Filters by Tom Coote > > http://www.tomcoote.co.uk/jQueryColumnFilters.aspx > > Rey... > -- []´s Jean www.suissa.info Ethereal Agency www.etherealagency.com

[jQuery] PLUGIN: jQuery Column Filters

2008-07-14 Thread Rey Bango
jQuery Column Filters by Tom Coote http://www.tomcoote.co.uk/jQueryColumnFilters.aspx Rey...

[jQuery] TUTORIAL: Pulling Your Flickr Feed with jQuery

2008-07-14 Thread Rey Bango
Pulling Your Flickr Feed with jQuery by Keith Muth http://www.viget.com/inspire/pulling-your-flickr-feed-with-jquery/ Rey

[jQuery] jQuery Curvy Corners Update - v1.6

2008-07-14 Thread Rey Bango
Michael Jolley's jQuery Curvy Corners has been updated: http://blue-anvil.com/archives/jquery-curvy-corners-update-v16 Rey,,,

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-14 Thread shapper
Jörn, I just uploaded an ASP.NET application that shows exactly what the problem was. The commented script code is the one I used to try to solve my problem but it does not work: http://www.27lamps.com/Beta/AutoComplete/Tags.aspx What should I do? Thanks, Miguel On Jul 14, 6:02 pm, "Jörn Zaef

[jQuery] Re: Display JSon String

2008-07-14 Thread MorningZ
A tool like Firebug will let you view the "Response Body" of an XHR request, which includes seeing the JSON as a plain string

[jQuery] Filter input chars and check full value of input field

2008-07-14 Thread Paul Menard
Hey all. Having a little trouble getting this to work. I have a donation form with an input (type="text") field and a select dropdown item. By default the dropdown is disabled. The plan is when the value of the input is 50 or higher enable the the select dropdown. I also want to filter out keystr

[jQuery] Re: Autocomplete Plugin: Expand DIV with image and link

2008-07-14 Thread Jörn Zaefferer
Well, the modified file together with a demo/test page would be helpful, too. Just the modifications alone make it difficult to properly test the implementation. Jörn On Mon, Jul 14, 2008 at 8:00 PM, Michèle <[EMAIL PROTECTED]> wrote: > > Hi Jörn > > Many thanks for your answer. > I have added t

[jQuery] Re: Using jQuery on imported content

2008-07-14 Thread Hamish Campbell
Are you attaching the click handlers before or after you load the ajax content? If you're trying to apply the click handler before, it won't work because the anchors don't exist yet. Either apply the click handler after the content is loaded, or use a plugin like LiveQuery to handle updates for

[jQuery] AJAX bugging out

2008-07-14 Thread jbhat
Hi, So i use $.post to call click.php. The variables are getting posted to this function correctly confirmed via firebug id 197 player1 false pos b4 turnbid in my php code, i get them immediately, but when i use $id in mySQL, it seems to disappear: die is returning SELECT boar

[jQuery] jquery modal problem closing modal via input button

2008-07-14 Thread c.s
I'm using the lovely jqmodal plugin for our firms project, but we are having some issues getting it to function once within the body of a page. i'm having the content loaded via ajax; modal is set to 'true'. outside the site, it works fine; modal closes when 'cancel' pressed. within the site, jqm

[jQuery] Re: Using jQuery on imported content

2008-07-14 Thread Pete
I want the index page to manage the links on the page that's loaded into the div via ajax. So in the index page, I'll try to attach the click event handler like : $('a#myanchor').click(function(){//dosomething}); in the imported page, the anchor looks like: link On Mon, Jul 14, 2008 at 2:36 PM

[jQuery] Re: Taconite problem

2008-07-14 Thread Peter Van Dijck
Thanks, LiveQuery did it. (I'm a beginner :)) Peter On Jul 14, 8:27 pm, Mike Alsup <[EMAIL PROTECTED]> wrote: > > Hi, > > I'm having a little problem, perhaps someone can help me figure this > > out because I'm a bit baffled. > > > In short: a link is clicked, I call a page with jquery ajax (the

[jQuery] Re: Quickie: Knowing if a scroll bar is there or not.

2008-07-14 Thread Karl Swedberg
Hmmm. Off the top of my head ... if the div has id="foo", something like this: if ($('#foo')[0].scrollWidth < $('#foo').width()) { // the scroll bar is showing. } --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jul 14, 2008, at 12:03 PM, fambi wrote:

[jQuery] Re: jQuery and Prototype

2008-07-14 Thread Colin Guthrie
Michael wrote: > And I wanted that functionality on my site. So I tried the code (which > uses prototype) and my jQuery code stops working. > > http://www.aber.ac.uk/designstudio/mike/newnew/newweb/ > > The lavalamp at the top right has stopped working and so has the drop > down on the settings

[jQuery] Re: Using jQuery on imported content

2008-07-14 Thread Brian J. Fink
What syntax are you using for the anchors themselves? On Jul 14, 2:00 pm, Peter Benoit <[EMAIL PROTECTED]> wrote: > Hi all, > > I have an "index" page with a div, that I $ > ('#mydiv").load('mypage.html') into. > > The problem I'm having is, I have anchors on "mypage" that I would > like to effec

[jQuery] Re: Taconite problem

2008-07-14 Thread Mike Alsup
> Hi, > I'm having a little problem, perhaps someone can help me figure this > out because I'm a bit baffled. > > In short: a link is clicked, I call a page with jquery ajax (the href > of the link is not followed). The page returns taconite xml, so far so > good. But then if I click the link that

[jQuery] Re: jQuery and Prototype

2008-07-14 Thread Brian J. Fink
It appears that Prototype uses the $ functionality, but in a slightly different way. You may consider employing jQueryNoConlfict() and then call jQuery() instead of $(). Also try loading the jQuery script last. On Jul 14, 1:01 pm, Michael <[EMAIL PROTECTED]> wrote: > Hi, > > I've been using jQuer

[jQuery] Re: Autocomplete Plugin: Expand DIV with image and link

2008-07-14 Thread Michèle
Hi Jörn Many thanks for your answer. I have added the code with element.append to the sourcecode. Unfortunately I am not familiar with the jquery Syntax and have no idea how to create a patch for this. Best regards Michèle

[jQuery] Taconite problem

2008-07-14 Thread Peter Van Dijck
Hi, I'm having a little problem, perhaps someone can help me figure this out because I'm a bit baffled. In short: a link is clicked, I call a page with jquery ajax (the href of the link is not followed). The page returns taconite xml, so far so good. But then if I click the link that was changed

[jQuery] Jquery popup change

2008-07-14 Thread Adar
Hi! and thanks to this wonderful group! I have this jquery that i was looking for that when clicked away (outside the popup) it hides the popup. i just want that it should also have a link inside the popup to close it as well! jQuery(document).ready(function(){ jQuery(".button").

[jQuery] Re: jScrollPane with jQuery 1.2.6

2008-07-14 Thread samer
could you send me your version jScrollPane On Jul 14, 11:17 am, "Rene Veerman" <[EMAIL PROTECTED]> wrote: > Yep, although i had to tweak it a bit.. > > On Mon, Jul 14, 2008 at 8:47 AM, samer <[EMAIL PROTECTED]> wrote: > > > does jScrollPane work with jQuery 1.2.6 > > It's been acting weird ever s

[jQuery] Using jQuery on imported content

2008-07-14 Thread Peter Benoit
Hi all, I have an "index" page with a div, that I $ ('#mydiv").load('mypage.html') into. The problem I'm having is, I have anchors on "mypage" that I would like to effect with the click event on the "index" page. Trying to access these loaded anchors via $('a#anchorid').click(...), isn't workin

[jQuery] Re: Calling PHP Functions from jQuery?

2008-07-14 Thread Iair Salem
I've made something very similar, and I suggest you to try it out, because it extremely simplifies ajax. Iair. On 14 jul, 11:54, Giovanni Battista Lenoci <[EMAIL PROTECTED]> wrote: > Yavuz Bogazci ha scritto: > > > Hi, > > > is it possible to call php functions from jquery? I knew how to call > >

[jQuery] Re: selecting all checkboxes formatted like an array

2008-07-14 Thread tlphipps
Checkout the Attribute Filters section on this page: http://docs.jquery.com/Selectors I think that will help you get what you need. On Jul 14, 11:13 am, armyofda12monkeys <[EMAIL PROTECTED]> wrote: > i have a dynamic checkbox created by drupal like so that i want to > disable all the values: >

[jQuery] Replacing html in ajax success callback?

2008-07-14 Thread s.ross
Hello-- I have what seems a simple problem, but it's somehow not working out. Here's the problem: $(".pastebinLink a").livequery(function(){ $(this).bind('click', function(el){ $.ajax({ url: this.href, type: 'post', success: function(results, status

[jQuery] jQuery and Prototype

2008-07-14 Thread Michael
Hi, I've been using jQuery for my new website and everything has been working fine, no errors: http://www.aber.ac.uk/designstudio/mike/newnew/newweb/index-backup-14-07-08.html Then I saw this website: http://24ways.org/examples/introducing-udasss/ And I wanted that functionality on my site. So

[jQuery] Re: Dynamic changing jCarousel data source

2008-07-14 Thread [EMAIL PROTECTED]
Woow... it should be done.!! it looks great! wish have jquery version...!! ^^,! yay! On Jul 14, 7:14 am, Marius Bucur <[EMAIL PROTECTED]> wrote: > I need to do something lkie > this:http://billwscott.com/carousel/carousel_ajax_search.html > Is it possible?

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-14 Thread Jörn Zaefferer
Learn to use Firebug - as I mentioned, the ajax request returns a 404. It still does. Please come back when you have an actual JavaScript problem. Jörn On Mon, Jul 14, 2008 at 6:16 PM, shapper <[EMAIL PROTECTED]> wrote: > > Jörn, > > I just uploaded all your example to my server and the json exa

[jQuery] posting selected form values to parent page

2008-07-14 Thread Scott Stewart
Hey all, I'm a ColdFusion developer, new to jquery. I'm trying to pass a set of selected checkbox values from a form in a window opened via javascript, back to a text box in a form on the parent (opener) page. Any help would be greatly appreciated.. Thanks Scott Stewart

[jQuery] Re: array method on a jQuery object: deleting, adding elements

2008-07-14 Thread wolf
hm funny but i can't confirm that add and filter work as expected (not what i expected, at least). i have a website open in ffx2 / firebug and the only script loaded is jquery 1.2.6. then i do >>> var d = $( '#logo' ) >>> d [div#logo.tab-me] >>> d.add( '#daisy2' ) [div#logo.tab-me, div#daisy2.dai

[jQuery] Re: problem with Query String Object

2008-07-14 Thread McEdonskiy
thanks On Jul 14, 5:34 am, "Sam Sherlock" <[EMAIL PROTECTED]> wrote: > testing your url here: > > http://test.blairmitchelmore.com/jquery.query/?shosse[]=20&shosse[]=22&shosse[]=23&shosse[]=24&price=0 > > gives you this > > get "shosse" => [20, 22, 23, 24] > > > > > get "price" => 0 > > > tostri

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-14 Thread shapper
Jörn, I just uploaded all your example to my server and the json example does not work: http://www.27lamps.com/Labs/AutoComplete/demo/json.html None of the remote works ... have no idea why. The same happens with my example: http://www.27lamps.com/Labs/AutoComplete/demo/tags.html Anyway, all I

[jQuery] Re: $.post problem. need help badly

2008-07-14 Thread Kirov
I think you should wait for a result code from the post request before you return true; otherwise the post is handled asynchronously and perhaps not done according to your plans :) Good luck; On Jul 14, 4:49 pm, Sandy <[EMAIL PROTECTED]> wrote: > hi, > > i wanna try to save the data from a form

[jQuery] selecting all checkboxes formatted like an array

2008-07-14 Thread armyofda12monkeys
i have a dynamic checkbox created by drupal like so that i want to disable all the values: i was wondering is there anyway to target them without trying to guess (like i was gonna target an id of an input field before that fieldset, go up a few ancestors then goto the next fieldset, get the c

[jQuery] Re: jScrollPane with jQuery 1.2.6

2008-07-14 Thread Rene Veerman
Yep, although i had to tweak it a bit.. On Mon, Jul 14, 2008 at 8:47 AM, samer <[EMAIL PROTECTED]> wrote: > > does jScrollPane work with jQuery 1.2.6 > It's been acting weird ever since I upgraded it today, my previous > version 1.2.1 of jQuery >

[jQuery] Quickie: Knowing if a scroll bar is there or not.

2008-07-14 Thread fambi
Hi all. Assuming a div has overflow: auto, how can I know whether the scroll bar is showing or not? Thanks

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-14 Thread Jörn Zaefferer
Open firebug and look at the request being send. A 404 is returned. Jörn On Mon, Jul 14, 2008 at 5:15 PM, shapper <[EMAIL PROTECTED]> wrote: > > That was a mistake when I uploaded the files ... I sent two wrong > files. > I just updated the files: > > http://www.27lamps.com/Labs/AutoComplete/dem

[jQuery] Re: Superfish - strange behavior when including images in items

2008-07-14 Thread Joel Birch
2008/7/14 DavCar <[EMAIL PROTECTED]>: > > Thank you Joel. Solved my problem. > And I learned some valuable insights too. Much appreciated! You are most welcome! > Still trying to wrap my head around your beautiful and suscinct > code :-) I'm still kind of new to the whole client-side of things.

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-14 Thread shapper
That was a mistake when I uploaded the files ... I sent two wrong files. I just updated the files: http://www.27lamps.com/Labs/AutoComplete/demo/tags.html Again it does not work. On Jul 14, 3:28 pm, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > You forgot the document ready code. > > Jörn > > O

[jQuery] Re: Calling PHP Functions from jQuery?

2008-07-14 Thread Giovanni Battista Lenoci
Yavuz Bogazci ha scritto: Hi, is it possible to call php functions from jquery? I knew how to call a .php page from jquery with $.post and to echo output or return a JSON Object. But my application growth and there is an increase in single php pages. This is very confusing and the filemanagemen

[jQuery] Re: Calling PHP Functions from jQuery?

2008-07-14 Thread noon
No. Suggestion: modify your php page to accept a POST/GET variable specifying the function that you wish to be run... On Jul 14, 10:11 am, Yavuz Bogazci <[EMAIL PROTECTED]> wrote: > Hi, > > is it possible to call php functions from jquery? I knew how to call > a .php page from jquery with $.post

[jQuery] Calling PHP Functions from jQuery?

2008-07-14 Thread Yavuz Bogazci
Hi, is it possible to call php functions from jquery? I knew how to call a .php page from jquery with $.post and to echo output or return a JSON Object. But my application growth and there is an increase in single php pages. This is very confusing and the filemanagement is getting complicated. H

[jQuery] Thickbox reopens with another close button

2008-07-14 Thread Tom
I have an as3 flash microsite that uses thickbox 3.1 to open image galleries. The site has several flash 'pages' and each page opens a thickbox window. My problem is that if you open up one thickbox window, close it, go to a new flash 'page' open another thickbox window, close it, then go back to

[jQuery] Re: PLUGIN: Select Multiple Control

2008-07-14 Thread Ryan Cramer
Thank you for posting the screenshot. That select multiple that you circled is not supposed to be there, except when debugMode is on. But I just reproduced that here too, and you are right, it looks like there's a problem there with IE6. Specifically, the problem appears when the 'sortable' option

[jQuery] Re: $.post problem. need help badly

2008-07-14 Thread Sandy
this is fixed now: i changed this: $("form:last").bind("submit", submit_optin); to: $("form:last").find(":submit").bind("submit", submit_optin); On Jul 14, 9:49 pm, Sandy <[EMAIL PROTECTED]> wrote: > hi, > > i wanna try to save the data from a form to a database before > submitt

[jQuery] Display JSon String

2008-07-14 Thread shapper
Hello, I have an URL which returns a JSon string. How can I display it on my page using JQuery? I need to check if the JSon returned is in the expected format. Thanks, Miguel

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-14 Thread Jörn Zaefferer
You forgot the document ready code. Jörn On Mon, Jul 14, 2008 at 4:07 PM, shapper <[EMAIL PROTECTED]> wrote: > > Please, anyone? > > On Jul 14, 1:04 am, shapper <[EMAIL PROTECTED]> wrote: >> Hi, >> >> I tried to replicate your code using the JSon string generated by >> ASP.NET MVC. >> I created

[jQuery] jMaps + livequery

2008-07-14 Thread noon
I am using jMaps to add a point to my map and inside the point bubble I have a link to add the searched location to a favorites list. I am using livequery to catch the event handler for this dynamically created point bubble HTML/link. However nothing is firing. I've tripled checked my ID names,

[jQuery] Re: Autocomplete Plugin: Expand DIV with image and link

2008-07-14 Thread Jörn Zaefferer
Currently there is no option that allows you to customize the select markup. You'd have to edit the sourcecode directly. If you create a patch for that, I'll look at it and consider implementing it in the plugin. Jörn On Mon, Jul 14, 2008 at 12:08 PM, Michèle <[EMAIL PROTECTED]> wrote: > > Hi! >

[jQuery] Re: [tooltip]

2008-07-14 Thread Giovanni Battista Lenoci
saf ha scritto: Hello 1) How do I display tooltip at a fix position. 2) I want to display a tooltip when mouseover occures on text & also when it has focus. Thanx in advance try this (untested, but it would work): #tooltipbox { border:1px solid black; background-color:grey; color:

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-14 Thread shapper
Please, anyone? On Jul 14, 1:04 am, shapper <[EMAIL PROTECTED]> wrote: > Hi, > > I tried to replicate your code using the JSon string generated by > ASP.NET MVC. > I created a static php code as you did ... To be honest I am not > familiar with php. This was the best I was able to do ... > > I ha

[jQuery] $.post problem. need help badly

2008-07-14 Thread Sandy
hi, i wanna try to save the data from a form to a database before submitting it to it's rightful "action" url. this is an opt-in form i wanna work on. i did this: $("form:last").bind("submit", submit_optin); /* i altered the submit event of the opt-in form so it uses the submit_optin function i

[jQuery] [tooltip]

2008-07-14 Thread saf
Hello 1) How do I display tooltip at a fix position. 2) I want to display a tooltip when mouseover occures on text & also when it has focus. Thanx in advance

[jQuery] Re: Underlay to replace overlay

2008-07-14 Thread JohnieKarr
Hi Gabriel, I'm not familiar with thickbox, but don't you just want your gallery to be a div and change the background image of that div? I hope I'm visualizing what you want correctly. Thanks, Johnie Karr On Jul 12, 7:22 am, Gabriel <[EMAIL PROTECTED]> wrote: > Nobody ??? :( > > On 10 juil, 2

[jQuery] jQuery injecting problem

2008-07-14 Thread Sam Dark
Hello, everyone! I need some help. I'm trying to inject jQuery into the page using a bookmarklet (http:// www.learningjquery.com/2006/12/jquerify-bookmarklet). It works with all pages except this one: http://www.laist.com/2008/02/08/bansky_banksy_a.php giving me "jQuery(window).bind is not a

[jQuery] Re: jqmodal close on javascript event

2008-07-14 Thread MorningZ
Yes, it's possible it would be like function SomeEventYouCallOnRowDoubleClick() { $("#ID_of_JQM_Window").jqmHide(); }

[jQuery] Re: a silly question about selector

2008-07-14 Thread Karl Swedberg
Hi Jack, Not silly at all. You don't need to include more about the elements, but beginning with the tag name may result in faster selector performance than starting with the name attribute. Please note, though, that your first expression should not have the spaces in between the selecto

[jQuery] Re: UI Dialog help with show dialog

2008-07-14 Thread Scott González
This is fixed in current SVN. On Jul 13, 4:50 pm, Pitrsonek <[EMAIL PROTECTED]> wrote: > Hi, i have this function: > > function showSendMessage(id){ > $('#sendMessage').dialog({modal: true,overlay:{opacity: > 0.5,background: "black"},title: 'Kontaktovat uživatele'}); > //$('#sendMessage').dialog(

[jQuery] Re: livequery with hoverIntent

2008-07-14 Thread [EMAIL PROTECTED]
I have the same problem, I assume it has to be registered with the livequery plugin somehow since it is not a normal jquery method? But I dont know... On 27 Juni, 18:24, Gerbrand <[EMAIL PROTECTED]> wrote: > Hello, > > I'm having the similar problem. > > When I try to use thehoverIntentwithin the

[jQuery] jScrollPane with jQuery 1.2.6

2008-07-14 Thread samer
does jScrollPane work with jQuery 1.2.6 It's been acting weird ever since I upgraded it today, my previous version 1.2.1 of jQuery

[jQuery] Re: addClass (odd and even)

2008-07-14 Thread samer
$('div.listing-item:odd').addClass('odd'); $('div.listing-item:even').addClass('even'); I think this should work On Jul 14, 7:01 am, sutra <[EMAIL PROTECTED]> wrote: > I have a product listing like this : > > . > > I want to add different background color for the odd and even  listing > lik

[jQuery] Re: remove dynamically placed dom element

2008-07-14 Thread Tom Shafer
im not exactly sure what i would be listening for, i get the error in firebug that deleteitem doesn't exist. I understand the concept of how to use on other elements but im not sure how this would be used on my submit function On Jul 13, 11:17 pm, "Kevin Pepperman" <[EMAIL PROTECTED]> wrote: > Fo

[jQuery] Re: Star rating plugin + rails

2008-07-14 Thread CL (Ciu Loeng) Lam
It's pretty gool! 2008/7/13 Diego A. <[EMAIL PROTECTED]>: > Hi JB, > > Thank you for spotting this problem and posting back with the solution. > I've added this fix to the plugin and will publish it on Monday (when I > have FTP access). > > Cheers, > Diego A. > > 2008/7/9 JB <[EMAIL PROTECTED]>:

[jQuery] Autocomplete Plugin: Expand DIV with image and link

2008-07-14 Thread Michèle
Hi! I'm using the amazing autocomplete plugin and it works perfectly. Now I'm trying to expand the div containing the ul with the results and add a linked image (e.g. powered by ...) after the ul. The HTML code between and should be something like this: http://www.xxx.com";> Unfortunately, I

[jQuery] a silly question about selector

2008-07-14 Thread jack
Hi, all For selector do I need to qualfy more about the elements I want to select? For example: $('input :radio [name="xxx"]:checked) does it better than the following $([name="xxx"]:checked) Thank you in advance! jack

[jQuery] Dynamic changing jCarousel data source

2008-07-14 Thread Marius Bucur
I need to do something lkie this: http://billwscott.com/carousel/carousel_ajax_search.html Is it possible?

[jQuery] Re: Help with UI Dialog show dialog

2008-07-14 Thread Pitrsonek
It is perfect, thank you very much. I was glance over option autoOpen. Bye, have you nice day. On 14 Čec, 04:21, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > The first time you call .dialog(options) is an initialization. If you close > the dialog after that (either by clicking on the 'X' or c

[jQuery] Re: dynamically change size of select box

2008-07-14 Thread K Bouton
Thanks - worked great. On Jul 11, 8:33 pm, "Michael Geary" <[EMAIL PROTECTED]> wrote: > Does this work? > > $('#select_project').html(options).attr({ size: ''+dropsize }); > > -Mike > > p.s. I note that you're taking care to use double quotes for your HTML > attributes - that's a Good Thing.

[jQuery] Re: PLUGIN: Select Multiple Control

2008-07-14 Thread CL (Ciu Loeng) Lam
But I find some problem in IE 6 ,the drop down list doesn't align properly, and it appear all the time . I put the screen shot in the attachment. 2008/7/14 CL (Ciu Loeng) Lam <[EMAIL PROTECTED]>: > It's really Cool ! Thanks. > > 2008/7/13 Richard D. Worth <[EMAIL PROTECTED]>: > > This is grea

[jQuery] Re: PLUGIN: Select Multiple Control

2008-07-14 Thread CL (Ciu Loeng) Lam
It's really Cool ! Thanks. 2008/7/13 Richard D. Worth <[EMAIL PROTECTED]>: > This is great. Very nice work Ryan. > > - Richard > > > On Sat, Jul 12, 2008 at 10:34 PM, Rey Bango <[EMAIL PROTECTED]> wrote: > >> >> Ryan Cramer released this new plugin: >> >> http://www.ryancramer.com/journal/entries

[jQuery] addClass (odd and even)

2008-07-14 Thread sutra
I have a product listing like this : . I want to add different background color for the odd and even listing like so: . . . I know how to use the simple addClass function in jQuery, but I am unable to figure how to add the 'even' class. This is my code, can you please te