[jQuery] Re: using apple-style slider

2009-03-28 Thread Adam
Anyone have any thoughts on this? Thanks in advance. -Adam On Mar 26, 2:59 pm, Adam adambu...@gmail.com wrote: Im using an apple product page-style slider as described on Remy's awesome jqueryfordesigners.com, but with content in addition to the images. Im having some css/display issues.

[jQuery] How hide DIV on body onclick

2009-03-28 Thread bharani kumar
Hi All Can some one send example snippet for Show DIV and Hide DIV in Body On click, I have some snippet, but that are not full fill my need, Exact example for clear view is in yahoo classic reply and reply-to-all , -- உங்கள் நண்பன் பரணி குமார் Regards B.S.Bharanikumar POST YOUR

[jQuery] Re: How hide DIV on body onclick

2009-03-28 Thread Vijendra
You Can use following code... html head script type=text/javascript src=javascript/jquery-1.2.6.pack.js/ script script type=text/javascript $(document).ready(function() { $('#list1').hide(); $('#list').show(); $(#btn .btn1).bind(mouseover, function(){ $('#list').show(slow);

Reply - [jQuery] Re: How hide DIV on body onclick

2009-03-28 Thread bharani kumar
Hi am asking somthing like yahoo , not an this, this one small example for show and HIDE DIV, when i click the reply link, it should show the reply, reply to all , these link hide , when i click the reply link as well as anywhere in the page , u got it, Thanks n You Can use following

[jQuery] Accordian

2009-03-28 Thread iceangel89
what can i do to allow users to click on the accordion header to navigate to a page? the reason is, i am using accordions for my navigation. for some of the pages, there are subpages so an accordian is used. but for others, there are no subpages and i want users to be able to click the header of

[jQuery] Re: IDE for JQuery?

2009-03-28 Thread Mohd Rashidi Bin Mohd Zin
I've tried jQuery with netbeans. It's pretty good :) 2009/3/28 iceangel89 iceange...@gmail.com which IDE is best for JQuery? i mean like has code completion for JQuery, at least HTML, CSS, JavaScript. best if it can also code complete PHP/Zend Framework. or your custom classes. Aptana can

[jQuery] SildeDown and table rows.

2009-03-28 Thread Jsbeginner
Hello, I'm trying to use the jquery slidedown function with table rows but it does not work as jquery defines them with display:block which places the whole row in the first colomn and makes the whole table layout go wrong ... Do you have any suggestions how to get around this ? Here's my

[jQuery] next and previous links with thumbs on mouseover

2009-03-28 Thread Victor Nogueira
Hi there, Want to know if it's possible to show thumbs attached prev/next anchors when I put the mouse over these navigation links. It would work like a preview tooltip for next/prev images. Thanks on advance and congrats for this great software.

[jQuery] .splice(i,1) method

2009-03-28 Thread shobhitsingh
Hi, Below I post js code from jquery website. $(document).ready(function() { var selected = new Array(); $('select').mouseover(function() { if (this.multiple == true) { for (var i=0,a=0;ithis.options.length;i++) { if (this.options[i].selected == true) {

[jQuery] Autocomplete + click : What do i do wrong here ?

2009-03-28 Thread jean000
Hello everybody, I am brand new using jquery and have some problems ! I have to say I am not un professional so be indulgent with my code ! Could someone tell me if there some obvious mistake in this script : script type=text/javascript $(document).ready(function(){

[jQuery] Re: iframe ang jQuery

2009-03-28 Thread matski
Do you need jQueryfor that? Can't you jut use the HTML tag scrolling=no in the frame you don't want scrollbars in? http://www.w3.org/TR/REC-html40/present/frames.html On Mar 28, 4:41 am, themba themba.ntl...@gmail.com wrote: Thank you, my problem is that a normal iframe cannot have an auto

[jQuery] jQuery and ASAH

2009-03-28 Thread matski
Anyone had any problems pulling jQuery through ASAH? I have a lightbox plugin working on a page I am trying to embed somewhere else and all the js is stripped out...not sure how to work around it. Everything is on my server, I'm not pulling in any external HTML. Cheers!

[jQuery] Detecting user selecting text and copying

2009-03-28 Thread vprelovac
Hi guys I am looking for a snippet of code to trigger an event when the user selects a piece of text and copies to the clipboard (either pressing ctrl-c or right click/copy). Is it possible?

[jQuery] Re: iframe ang jQuery

2009-03-28 Thread Mike Alsup
Do you need jQueryfor that? Can't you jut use the HTML tag scrolling=no in the frame you don't want scrollbars in?http://www.w3.org/TR/REC-html40/present/frames.html On Mar 28, 4:41 am, themba themba.ntl...@gmail.com wrote: Thank you, my problem is that a normal iframe cannot have an

[jQuery] Re: trigger a dialog from a click event

2009-03-28 Thread Richard D. Worth
Your code looks good: http://jsbin.com/usobo but it only allows the dialog to open once. If by chance you're having trouble opening the dialog after it has closed, by clicking the same button: http://jsbin.com/ayuso - Richard On Sun, Mar 22, 2009 at 12:18 AM, phanorcoll phanorc...@gmail.com

[jQuery] Re: Autocomplete + click : What do i do wrong here ?

2009-03-28 Thread jean000
Somme news : I made a simplier script : script type=text/javascript $(document).ready(function(){$(.txtSerial).click(function () {$ (this).autocomplete(./serieComplete.php, {max: 10, scrollHeight: 220, mustMatch: true}).result(function(){alert($(this).attr (id));} );});}); /script

[jQuery] Re: iframe ang jQuery

2009-03-28 Thread bjorsq
Have you thought of using AJAX to embed the remote page within a div instead of using an iFrame? I know you would have to use JSONP to get it to work across domains, so it kind of depends on how much control you have over each site. Another way of doing it would be using a proxy script to fetch

[jQuery] Re: next and previous links with thumbs on mouseover

2009-03-28 Thread Victor Nogueira
Forgot to mention I was talking about jquery cycle. sorry. ;/ On Mar 27, 11:18 pm, Victor Nogueira victor.carcr...@gmail.com wrote: Hi there, Want to know if it's possible to show thumbs attached prev/next anchors when I put the mouse over these navigation links. It would work like a

[jQuery] Re: JQuery form validation not working with jsp

2009-03-28 Thread Smruti Pragyan Misra
Hi John, Thanks for ur reply.presently I am able to call validate() method for both the fields.But it's not working with following code. ?xml version=1.0 encoding=UTF-8? %@ taglib prefix=fmt uri=http://java.sun.com/jsp/jstl/fmt% %@ taglib prefix=html tagdir=/WEB-INF/tags/html% %@

[jQuery] Re: SildeDown and table rows.

2009-03-28 Thread Karl Swedberg
One workaround is to wrap the contents of each TD in a DIV. Hide those divs and then slide them down. The only other thing I would suggest is to use fadeIn() instead. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 28, 2009, at 7:17 AM, Jsbeginner

[jQuery] Redirect to anchor after form submit

2009-03-28 Thread Jsbeginner
Hello, I've got a simple form with a return false function to stop it being submitted as I use ajax to update it. However I've come accross a functional problem : if the user's screen is to small and he has not scrolled down enough then he doesn't see the search results and gets the

[jQuery] Re: Plugin to display large image of thumbnail on hover

2009-03-28 Thread banacan
Thanks Jack. I'll check them out. On Mar 27, 1:49 pm, Jack Killpatrick j...@ihwy.com wrote: this isn't quite the same, but FYI:http://james.padolsey.com/demos/imgPreview/full/ there's also this:http://www.mind-projects.it/projects/jqzoom/demos.php#demo1 - Jack banacan wrote: As the

[jQuery] Re: Redirect to anchor after form submit

2009-03-28 Thread Jsbeginner
I've just found this plugin that seems to work fine and the minified version is only 2 kb ... : http://flesler.blogspot.com/2007/10/jqueryscrollto.html Is this the best way ? Thankyou. Jsbeginner a écrit : Hello, I've got a simple form with a return false function to stop it being

[jQuery] Re: Plugin to display large image of thumbnail on hover

2009-03-28 Thread banacan
Sliver, Thanks for the reply. I must confess, searching the plugins directory is tremendously frustrating. Quite often I will know the name of a plugin and will attempt to find it by name, only to receive a 0 entries found response. Other times I get bits and pieces of posts with the keyword

[jQuery] Sync response in ajax forms

2009-03-28 Thread Josip Lazic
Is it possible to display response from ajax script err something like this: I call ajax.php and usually i takes few seconds to finish, and I would like to update 'target' with something like text progressbar. Finding solution Coumputing infinity... Talking with God... Done. Currently

[jQuery] Re: Plugin to display large image of thumbnail on hover

2009-03-28 Thread Rick Faircloth
+ 1 ! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of banacan Sent: Saturday, March 28, 2009 3:41 PM To: jQuery (English) Subject: [jQuery] Re: Plugin to display large image of thumbnail on hover Sliver, Thanks for the reply.

[jQuery] Re: $this.filter('.myclass').myplugin() OR $this.is('.myclass') $this.myplugin()

2009-03-28 Thread Ricardo
Most plugins will return a this.each(function(){... call, so if there are no matching elements, nothing will get executed, practically zero overhead. But that is a different question, in case the plugin itself doesn't exist you'll get the 'myplugin is not a function' error. If you're in a place

[jQuery] jquery form plugin problem

2009-03-28 Thread dth
Hi, I'm trying to use the form plugin from malsup.org to submit a form with ajax, but it does not seem to work with options. This works: $(#loginform).ajaxSubmit(function(obj, statusText) { alert(obj);

[jQuery] Using $.get with preload page seems to strip JavaScript

2009-03-28 Thread pthesis
Hi guys, I want to display a simple Loading... image while my page loads. I've got it halfway working at http://pranshuarya.com/test.html. The problem is that once the page gets loaded, the JavaScript functionality in it doesn't work (even though the files are getting loaded). You'll know what

[jQuery] Re: Plugin to display large image of thumbnail on hover

2009-03-28 Thread pthesis
Are you looking for something like this? http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery pthesis. On Mar 28, 1:41 pm, banacan banaca...@gmail.com wrote: Sliver, Thanks for the reply.  I must confess, searching the plugins directory is tremendously

[jQuery] $.post problem

2009-03-28 Thread paljo
Hi, I' m using $.post in this form: $.post(rpc.php,{data:data},function (result){$('.aDiv').html(result);}); Basically i' m searching inside a database and the results are echoed from rpc.php in this form: ulli class=aClassa href=#Some text/a/li.../ ul . Everything works fine except that

[jQuery] jquery form plugin problem

2009-03-28 Thread dth
Hi, I'm having a problem with the jquery (ajax) form plugin. It says on the page (malsup.com) to seek help here :) When I invoke ajaxSubmit() with a function it is called on success. But when I invoke ajaxSubmit() with a Options object with success: function() {..} the function is not invoked.

[jQuery] Re: Plugin to display large image of thumbnail on hover

2009-03-28 Thread pthesis
Are you looking for something like this? http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery pthesis. On Mar 27, 7:39 am, banacan banaca...@gmail.com wrote: As the subject says, I'm looking for a plugin that will display a larger image of the thumbnail when the

[jQuery] Superfish not attaching pathClass to navigation items

2009-03-28 Thread Fluvius
Hi, I'm using Superfish 1.4.8 on my site (http://users.tpg.com.au/j_birch/ plugins/superfish/) and have created my navigation in the basic vertical dropdown style with the addition of SuperSubs to handle the widths of the sub-menu items. All is working great except for one thing. A number of

[jQuery] Re: Accordian

2009-03-28 Thread Lee Jorgensen
This is exactly what I did on my site: n0wq.com The base code that I used was from: http://www.dynamicdrive.com/dynamicindex17/ddaccordionmenu.htm Modified the CSS to do what I need it to do, and added the Ajaxify plugin to load the main content section. NOTE: make sure in the submenuheader

[jQuery] click(function() works only once per page load?

2009-03-28 Thread Mr.Zeph
Hi, I'm brand new to jQuery, and so far I love it! I don't know ajax from a cumquat and yet, here I am ajaxing around merrily, even if clumsily. I've run into a situation where I have a grid of images, one which is to be the default, or the main image. When I click the radio button, it correctly

[jQuery] Re: Thickbox half-works.

2009-03-28 Thread embra
Just read the release notes for JQuery 1.3 as I was having a similar issue: The '@' in [...@attr] has been removed. Deprecated since 1.2 this old syntax no longer works. Simply remove the @ to upgrade. The thickbox code on line 78 uses @rel to find all the gallery items with the same rel tag.

[jQuery] adding jQuery causes my page to flash/blink on load

2009-03-28 Thread jaybee
Hi when I added jquery-1.3.2 and jquery.ui-1.7.1 to my page here http://ssmedgroup.com/beta/index.html it causes my page to flash/blink as the browser redraws the page on load. (click on the navigation tab; you'll see what I mean.) It happens on safari 4, chrome (though less so), and IE68.

[jQuery] jquery form plugin problem

2009-03-28 Thread dth
Hi, I'm trying to use the form plugin from malsup.org to submit a form with ajax, but it does not seem to work with options. This works: $(#loginform).ajaxSubmit(function(obj, statusText) { alert(obj);

[jQuery] Survey Check fails in Internet Explorer

2009-03-28 Thread Mathijs Henquet
Hello everybody, Ok so i am a complete beginner in both jQuery, JavaScript and english. I build a script to check a survey for empty questions, if so show a new tr and make a list of empty questions. If the script detects no errors it will submit the form. It worked like a charm in firefox but

[jQuery] Re: jquery form plugin problem

2009-03-28 Thread Mike Alsup
I'm trying to use the form plugin from malsup.org to submit a form with ajax, but it does not seem to work with options. This works:                             $(#loginform).ajaxSubmit(function(obj, statusText) {                                     alert(obj);                            

[jQuery] Re: next and previous links with thumbs on mouseover

2009-03-28 Thread Mike Alsup
Want to know if it's possible to show thumbs attached prev/next anchors when I put the mouse over these navigation links. It would work like a preview tooltip for next/prev images. That's not something that the Cycle plugin will do for you. However, you could probably use the before/after

[jQuery] retrieving DOM element with specific CSS class

2009-03-28 Thread macsig
Hello guys, I'm trying to make some changes to the coda slider effect on jqueryfordesigners.com Basically what I want is changing the buttons every time I move from a panel to an other one. I have the code below: div id=slider ul class=navigation lia href=#1 id=firstFIRST/a/li lia

[jQuery] Re: scrollto and jumping

2009-03-28 Thread kevinm
Turns out I had something else impacting the click. so put a preventDefault() (had the return false already) and that cured it. On Mar 26, 9:39 am, Ariel Flesler afles...@gmail.com wrote: In case James comment doesn't do for you, please provide a demo. -- Ariel

[jQuery] Re: Using $.get with preload page seems to strip JavaScript

2009-03-28 Thread pthesis
Just to clarify and update... I've attempted to use the LiveQuery plugin (see code below) so that elements that don't exist yet (that are getting retrieved via $.get) get bound to the 'click' event, but that didn't change anything. HTML pre-load page: test.html Content page loaded via $.get:

[jQuery] [JQuery UI] Styles

2009-03-28 Thread iceangel89
i am wondering how can i create a button like the open dialog button in http://jqueryui.com/themeroller/ when i copy and paste the source for the button from the jqueryui site, i dun get the right positioning without editting the css. am i missing something? pa href=# style=display: block;

[jQuery] Why isn't there any list widget?

2009-03-28 Thread Zach
I've searched extensively for a jquery widget that allows me to add/ remove items to a list, set font size, etc. For an example of what I mean, see here: http://www.webresourcesdepot.com/dnspinger/ Could anyone point me in the right direction?

[jQuery] Re: Call for contributors: A simple, fast and flexible grid/spreadsheet component.

2009-03-28 Thread Zachariah
Well, so far my lesson from that project has been 'do the other things first until you find the right grid'. It's a really big project, so I've had plenty keeping me busy in the mean time. What I do know is that making a grid out of a normal table severely limited my ability to do creative

[jQuery] Re: Removing Single Option from Select

2009-03-28 Thread iceangel89
THANKS! On Mar 27, 8:00 pm, Pierre Bellan fcy...@gmail.com wrote: Hi, you select your select : $('#myselect'); then u find the option with the value -1 : $('#myselect').find('option[value=-1]') or $('#myselect option[value=-1]'); finally you removed it $('#myselect

[jQuery] Re: retrieving DOM element with specific CSS class

2009-03-28 Thread Marco Elisio Oliveira Jardim
The jQuery('some_selector') method will retrieve an array of objects, no matter how many items exists with that selector. In your case you should use something like this: jQuery('#slider.navigation a.selected')[0].id; ^^ (you

[jQuery] Re: Why isn't there any list widget?

2009-03-28 Thread brian
On Sat, Mar 28, 2009 at 11:30 PM, Zach zsoa...@gmail.com wrote: I've searched extensively for a jquery widget that allows me to add/ remove items to a list, set font size, etc. For an example of what I mean, see here: http://www.webresourcesdepot.com/dnspinger/ What are we supposed to be

[jQuery] Re: Why isn't there any list widget?

2009-03-28 Thread Zach
Sorry, that site is a bad example. I was referring to the list of links on the site. I can't just use CSS because I want the list to be dynamically generated with addItem() and removeItem() methods, and I also want items to be selectable. On Mar 29, 12:30 am, brian bally.z...@gmail.com wrote:

[jQuery] number of elements with a specific CSS class

2009-03-28 Thread macsig
Hello guys, is there a way to know how many element have a specific CSS class? I have a list and I need to know how many items it contains. I guess it should be omething like: $('#slider .navigation li'). ... Thanks

[jQuery] Re: click(function() works only once per page load?

2009-03-28 Thread Ricardo
Your click handler only applies to the elements matching .ajax_homes_primary_img at the time the click() function is called. When you replace it, the new element has no event listeners attached. You can either rebind the event every time you modify it, or use the 'live' function, which uses event

[jQuery] Re: number of elements with a specific CSS class

2009-03-28 Thread Marco Elisio Oliveira Jardim
A simple $('#slider .navigation li').length; will make it. ;) _ Lois Griffin: I’m a naughty girl and I need a spanking! Peter Griffin: And I'm a paladin with 18 charisma and 97 hit-points, I can use my helm of disintegration and do 1d4 damage as my half-mage elf