Re: [jQuery] need help with simple jQuery problem

2010-01-22 Thread Adriana P
you put in your response? If so, where do I put the code? I am truly a novice, as you see. Thank you so much, Rory On Jan 20, 9:36 am, Adriana P adipa...@yahoo.com wrote: Hi Rory, You need only the expandAll() plug-in: $(function() {     $(#outer).expandAll({trigger: span.expand

Re: [jQuery] need help with simple jQuery problem

2010-01-20 Thread Adriana P
Hi Rory, You need only the expandAll() plug-in: $(function() { $(#outer).expandAll({trigger: span.expand, ref: div.demo, showMethod: slideDown, hideMethod: slideUp, speed: 600}); }); Regards, Adriana Rory Bernstein wrote: Hello, I am a total jQuery novice, and I tried to use

[jQuery] jQuery 1.4 cross domain post bug?

2010-01-15 Thread David P
I have a webservice sitting on my https server that accepts the POST verb and responds with some JSON. If I build a simple html form like form method=post action=https://myserver.com/myWS; input type=submit/ input type=hidden name=emailAddress value=a...@a.com / input type=hidden name=password

[jQuery] JQuery Validate div selector issues

2009-12-23 Thread p...@scotche.gg
Hi Guys I am trying to get validate to work, but I am soo close and yet soo far! I think the problem is the selector and way i append the error or valid classes to the label, or specify the element for errors? Can anyone see the mismatch or problem? HTML example... [code]div

[jQuery] Re: ClueTip focus/blur trouble

2009-10-26 Thread karthick p
hi i m karthick,i m ding MCA in VIT...for me honey well company is coming for placement so can u give any model paper thank u 2009/10/26 Shawn sgro...@open2space.com Thanks Karl. I'll look at this more in a bit. but from what I can see I think you have a

[jQuery] Re: $.post cross domain first sends an OPTIONS verb?

2009-10-06 Thread David P
:32, David P dpio...@gmail.com wrote: I use $.post like so: $.post(http://mydomain.com/some/webservice;, $.toJSON({ emailAddress: emailAddress }), callback, json); this works great..the response of the POST is a json string and that is used in the callback..now I added https

[jQuery] $.post cross domain first sends an OPTIONS verb?

2009-09-25 Thread David P
I use $.post like so: $.post(http://mydomain.com/some/webservice;, $.toJSON({ emailAddress: emailAddress }), callback, json); this works great..the response of the POST is a json string and that is used in the callback..now I added https: $.post(https://mydomain.com/some/webservice;, $.toJSON

[jQuery] Improving jquery performance on this site..(stop stutter)

2009-08-18 Thread p...@scotche.gg
Hey group! I am near completion on a site I chose to use Jquery for rather than Flash for a client. While some flash is used as a background image, the content is HTML and Jquery for effects. The issue as i see is stuttering and not smooth jquery actions in sliding etc on page load. Is there a

[jQuery] Re: get parent where

2009-08-02 Thread P I
$(this).closest(div).attr(id)

[jQuery] Validation plugin - submit form without validation

2009-07-20 Thread Adam P
I'm using the Validation plugin for JQuery and was wondering if there was a function to submit the form without causing it to validate the form. I have a table with a list of radio-buttons and above that is a drop down list of states. The drop down list of states is used to filter the table

[jQuery] Fade in and then fade out element when using slideToggle

2009-07-17 Thread P
I have a div (#slide-panel) which is hidden by default (display:none) but shows up when a button (.slide) is clicked. Inside the div I have a h3 which also is hidden by default (display:none) but fades in as the div slides out. Here's the code: $(.slide).click(function(){

[jQuery] append and *slowly* show new content in DOM

2009-06-20 Thread Eric P
Hi, I'm guessing this is an easy question, but I can't figure it out. I want to add some new content to the DOM, so I have a line like this. $('#div_container').append('phi there!/p'); However, I'd like it to slowly appear via show(). But adding show() doesn't work as I'd expect. The new

[jQuery] Re: Form validation - Add http:// to text field if user forgot it

2009-06-03 Thread P
, May 28, 2009 at 2:19 PM, P pst...@gmail.com wrote: In my form I have a couple of text fields into which the user enters links. input type=text name=link1 id=link1 / input type=text name=link2 id=link2 / input type=text name=link3 id=link3 / Now I want to create a function that runs

[jQuery] Form validation - Add http:// to text field if user forgot it

2009-05-28 Thread P
In my form I have a couple of text fields into which the user enters links. input type=text name=link1 id=link1 / input type=text name=link2 id=link2 / input type=text name=link3 id=link3 / Now I want to create a function that runs after the user has entered a link. It should automatically add

[jQuery] A troll on jQuery in Linkedin QA board

2009-04-30 Thread S P Arif Sahari Wibowo
To those who in Linkedin, there a troll discrediting not only jQuery but the practise of using any library: http://www.linkedin.com/answers/technology/information-technology/computers-software/TCH_ITS_CMP/464788-10054134 Quote: You don't need a generic library, period. Bank it. Funny. :-) --

[jQuery] Carousel Help Needed

2009-04-09 Thread P
Using: http://sorgalla.com/projects/jcarousel/examples/static_controls.html I would like to have a control bar that shows dots instead of page numbers, etc. the difference being that if you have 9 items and you show 3 at a time, you should have 3 dots. A dot would represent a page and not one

[jQuery] Help showing 'Showing 3 of 12' msg in Carousel

2009-04-09 Thread P
hi, I was wondering if anyone has used or know the link to jQuery carousel which shows 3 vidoes at a time with ofcourse next pre button and message something like this: 'Showing 3 of 12' Thanks for your help.

[jQuery] Help: Carousel Showing Current Total count

2009-04-06 Thread P
hi folks, I'm new to JQuery can anyone help me find how to display current total page count on carousel. Eg: Showing 1 of 10 Page I'm currently using this http://sorgalla.com/projects/jcarousel/examples/static_controls.html script. Please if anyone know help me figure out how to display

[jQuery] .slideUp .slideDown issues in IE

2009-04-02 Thread Anton P.
I have been asked to build this slide up and down functionality on http://iuvodesign.com/ landing page. If you go to the address underneath the large image you will see Recent and Selected works. It seems to be working fine in all browsers, but IE displays the contents as soon as I click on the

[jQuery] Show div in div on mouseover

2009-03-10 Thread P
I have multiple divs on my page in which contains another div with links. These links should be hidden by default but then displayed when the mouse is over the div. HTML-code: div class=box Lorem ipsum div class=linksa href=#Foo/a a href=#bar/a/div /div div class=box Lorem ipsum 2 div

[jQuery] Re: Show div in div on mouseover

2009-03-10 Thread P
div.links { display:inline; } On Mar 10, 9:13 am, P pst...@gmail.com wrote: I have multiple divs on my page in which contains another div with links. These links should be hidden by default but then displayed when the mouse is over the div. HTML-code: div class=box Lorem

[jQuery] Ajax request -- passing additional paramters to success method

2009-02-26 Thread P Burrows
Is anyone aware of a way to pass some additional context information to the success function of an ajax request? For instance, here is my code which works fine: $.ajax({ type: GET, dataType: json, url: tUrl, success: GotNewData, error: GetDataError,

[jQuery] Re: Ajax request -- passing additional paramters to success method

2009-02-26 Thread P Burrows
Nevermind... I can do it with lambdas. -- Patrick Burrows http://www.CleverHumans.com On Thu, Feb 26, 2009 at 11:50 AM, P Burrows pburr...@gmail.com wrote: Is anyone aware of a way to pass some additional context information to the success function of an ajax request? For instance, here

[jQuery] Best practice for replacing inline HTML function calls w/several arguments with an event handler

2009-02-13 Thread Eric P
, etc.), but I'm at a loss when it comes to a solid way to pass numerous arguments to the event handling function. Thanks for reading, Eric P.

[jQuery] Re: Best practice for replacing inline HTML function calls w/several arguments with an event handler

2009-02-13 Thread Eric P
Me!/ abr / img src=item02.jpg /a href=. id=item02 class=buyBuy Me!/ abr / img src=item03.jpg /a href=. id=item03 class=buyBuy Me!/ abr / On Feb 13, 10:35 am, Eric P eric.maill...@gmail.com wrote: Hi, I'm fairly new to jQuery (been using a few months now). Binding event handlers to HTML objects

[jQuery] Form field validation call out (mini pop-up) plugin?

2008-12-10 Thread Eric P
Hi, I've been digging around the net for a jQuery plugin that does a form validation call out. This would be a little info pop-up near a form field notifying the user why their entry didn't validate. This demo shows pretty much what I'm looking for. Type in a non-integer phone number to see

[jQuery] Re: [tooltip] Problem in IE 6 with multiple tooltips of different 'extra' classes

2008-12-05 Thread Eric P
Done. http://dev.jquery.com/ticket/3689 Thanks, Eric Jörn Zaefferer wrote: The code looks fine. Could you file a ticket for this? http://dev.jquery.com/newticket (requires registration) Thanks Jörn On Fri, Dec 5, 2008 at 2:46 AM, Eric P [EMAIL PROTECTED] wrote: Hi, Just started

[jQuery] [tooltip] Problem in IE 6 with multiple tooltips of different 'extra' classes

2008-12-04 Thread Eric P
with their own unique extraClass to three different p blocks. In IE 6 only the first p tooltip works (tooltip has a blue background). The other two don't use their respective extraClasses (different background colors, etc.). As I'm new to this plugin, I wouldn't be surprised if I've borked the syntax

[jQuery] Re: mixing jQuery with regular JavaScript

2008-10-27 Thread Eric P
jQuery needed to defined within the jQuery document instance. Thanks, Eric P.

[jQuery] Re: mixing jQuery with regular JavaScript

2008-10-24 Thread Eric P
On Fri, Oct 24, 2008 at 2:25 PM, Eric P [EMAIL PROTECTED] wrote: Hi, I'm trying to mix jQuery with some pre-existing JavaScript/HTML, but I'm having what appears to be scope issues. The code I'm working on already has a bunch of inline event handler function calls in the HTML tags

[jQuery] mixing jQuery with regular JavaScript

2008-10-24 Thread Eric P
P.

[jQuery] Re: jCarousel - flickr intergration

2008-10-10 Thread Jose P. Carballo
*All I'm really looking for is a solution to not having a blank picture appearing when the it reaches the end of the photostream.* Well if I'm correct JCarousel controls is a .png picture called next-horizontal.png and another one called prev-horizontal.png. Usually is a picture with 4 arrows,

[jQuery] Jcarousel - Changing the starting position of the carousel according to the last page visited.

2008-10-08 Thread Jose P. Carballo
, -- Forwarded message -- From: Jose P. Carballo [EMAIL PROTECTED] Date: 2008/10/5 Subject: About JCarousel To: [EMAIL PROTECTED] Hello, first of all thanks for this software and all documentation etc. Good job. I have a small question, how could I change the image displaying

[jQuery] Find / traverse to next node matching a criteria?

2008-09-05 Thread S P Arif Sahari Wibowo
Hi! Is there any feature in jQuery to find the next node matching a criteria, regardless of that next node a sibling or not? I know there is next(expr) and prev(expr) methods, but this only works for sibling. I specifically need to have something to look into siblings and non-siblings. The

[jQuery] Re: How to apply jQuery to an item which doesn't exist when the page is loaded.

2008-09-05 Thread S P Arif Sahari Wibowo
On Fri, 5 Sep 2008, lukas wrote: My PHP code creates a button which doesn't exist when my page is loaded. Hence, the according jQuery command doesn't work. Not sure what you meant. For server-side scripting - such as PHP - loading a page is the only way for the script to create HTML

[jQuery] best practices for scripts dir structure, etc.

2008-09-04 Thread Eric P
sense and don't like what I've got so far since I'm using version numbers inconsistently, both in filenames and dir names, or not at all. Any tips would be great. Thanks! Eric P.

[jQuery] Re: best practices for scripts dir structure, etc.

2008-09-04 Thread Eric P
using versions is very handy when you want to incorporate the latest version on a new page in your project, but don't want to go back and regression test all the other pages in the application i've got structure like: - /jquery/ -/1.1.8/ - jquery.js - jquery.pack.js

[jQuery] Re: jQuery.data and pre-rendered pages.

2008-08-27 Thread P. Skoog
Ok, Thanks for the answer. On Aug 26, 3:08 pm, Mike Alsup [EMAIL PROTECTED] wrote: The problem is that i don't have access to the metadata plugin. So the question is still... is this possible with the built in function $.data? No, the data function does not extract data from the markup.

[jQuery] jQuery.data and pre-rendered pages.

2008-08-26 Thread P. Skoog
Hi, Is it possible to store meta data in html-tags on the page without the help of jQuery. The problem I'm having is that I have an existing php-script rendering tables, and I really need to store meta data in each cell for later use by jQuery. Is this even possible? Thanks, Patrik Skoog

[jQuery] Re: jQuery.data and pre-rendered pages.

2008-08-26 Thread P. Skoog
://plugins.jquery.com/project/metadata Mike On Aug 26, 2:55 am, P. Skoog [EMAIL PROTECTED] wrote: Hi, Is it possible to store meta data in html-tags on the page without the help of jQuery. The problem I'm having is that I have an existing php-script rendering tables, and I really need to store meta

[jQuery] Replace multiple select box options with images

2008-08-25 Thread P
I have a select box that looks like this: div id=ratings-box select name=ratings2[] multiple=multiple id=edit-ratings2 option value=11/option option value=22/option option value=33/option option value=44/option option value=55/option option value=66/option /select /div Now instead of showing

[jQuery] Replacing DOM Elements While Maintaining Child Elements

2008-07-22 Thread Chris P
Ok, I have this code (I know it's horrific). td class=ms-sbscopes ms-sbcell select class=ms-sbscopes title=Search Scope id=ctl00_PlaceHolderSearchArea_ctl01_SBScopesDDL name=ctl00$PlaceHolderSearchArea$ctl01$SBScopesDDL option value=This SiteThis Site: Hirsch Branding/option /select /td I want

[jQuery] Modifying table cell text

2008-07-02 Thread P
I have a table that looks like this: -- div class=highest-rated table tr td class=titleLorem ipsum/td td class=categoryAudio/td td class=rating3/td /tr tr td class=titleFoo/td td class=categoryVideo/td td class=rating2/td /tr tr td class=titleBar/td td

[jQuery] Re: Modifying table cell text

2008-07-02 Thread P
Thank you! Problem solved. On Jul 2, 5:41 pm, Richard D. Worth [EMAIL PROTECTED] wrote: $(.highest-rated td.rating).each(function() {   var rating = $(this).text();   $(this).html('img src=images/rating-' + rating + '.gif /'); }); - Richard On Wed, Jul 2, 2008 at 11:02 AM, P [EMAIL

[jQuery] Re: Gmail Progress Bar

2008-06-06 Thread P-Do
There is a progress bar jquery plugin (I'm sure there must be more too) here: http://digitalbush.com/projects/progress-bar-plugin On May 24, 6:11 am, [EMAIL PROTECTED] wrote: Recently Google Added a Progress bar in gmail .. without any SWF uploader and any Flashes ... And it works in IE and

[jQuery] Refactoring Functions

2008-06-04 Thread Chris P
I wanted a script that would make a sticky footer, and it worked perfectly with this (where 341 is the elements to offset). var height = $(document).height(); var height = height - 341; $('#footer').css('margin-top', height); Then I want this code to re-run on browser resize. I also want to

[jQuery] Re: Refactoring Functions

2008-06-04 Thread Chris P
Better yet, change line second line of stickFooter function to: var height = $(document).height() - 341; And remove the third line entirely. Carl Thanks for responding Carl. This is what I ended up using as you prescribed. script type=text/javascript var stickyFooter = function() {

[jQuery] Re: jQuery Not Adding Class/Attributes in IE

2008-05-28 Thread Chris P
I'm with Karl. I remember IE dying on me when I tried to set an expando called 'all', go figure... So.. use another attribute, jQuery.data or try setAttribute. Not sure whether it will fail as well or not. Sorry for the spamming of the list. I actually figured out why it didn't work. The

[jQuery] Re: jQuery Not Adding Class/Attributes in IE

2008-05-27 Thread Chris P
Anyone? On May 26, 8:32 pm, Chris P [EMAIL PROTECTED] wrote: Hello all, For some reason this is not working in IE but fine in Safari/FF. jQuery('ul.nav a').addClass('scrollover').attr('type','scrollover'); You can see it on my site (www.siolon.com). It's suppose to add

[jQuery] Re: jQuery Not Adding Class/Attributes in IE

2008-05-27 Thread Chris P
Anyone on this? On May 26, 8:32 pm, Chris P [EMAIL PROTECTED] wrote: Hello all, For some reason this is not working in IE but fine in Safari/FF. jQuery('ul.nav a').addClass('scrollover').attr('type','scrollover'); You can see it on my site (www.siolon.com). It's suppose to add

[jQuery] Re: $(document).ready(function() { giving error $ is not a function - what am I doing wrong?

2008-05-09 Thread Fred P
A little more specific: You're using jQuery.noConflict() which allows you to use the variable jQuery jQuery(document).ready( function() { jQuery(#sliding_cart).css({ display: none}); }); then later in your doc, you're using $

[jQuery] Re: Trouble applying .show() to descendants

2008-02-14 Thread Nick P
That did it! Thanks for the help! On Feb 13, 2:31 am, andrea varnier [EMAIL PROTECTED] wrote: On 13 Feb, 01:11, Nick P [EMAIL PROTECTED] wrote: The trouble comes when I try to append this cloned block to the end of the table. If I just do: blockCopy.appendTo([EMAIL PROTECTED

[jQuery] Trouble applying .show() to descendants

2008-02-12 Thread Nick P
to jQuery so any help is greatly appreciated! - Nick P

[jQuery] Re: Help With Odd ID Search

2008-01-07 Thread Nick P
That did it. Thank you so much! I've been trying to escape the colon using one slash :p Thanks again! - Nick On Jan 7, 3:08 pm, Jonathan Sharp [EMAIL PROTECTED] wrote: Try escaping the colon: $(#itemForm\\:standards select:last) Cheers, -Jonathan On 1/7/08, npetcu [EMAIL PROTECTED

[jQuery] Re: prototype.js and jquery.js conflict problems? (Lightbox and Thickbox) simple?

2007-08-16 Thread Stephen P
Hey Sam, I'm not sure if you figured this out yet but here it goes. You cannot just paste the code example found on the jQuery site. You need to make a couple of adjustments so it is customized to your needs. As the documentation says, the $ character serves as a shortcut for jQuery. By using