Re: [jQuery] need help with simple jQuery problem

2010-01-22 Thread Adriana P
> > I do not understand what you are asking me to do; can you please give > more info/context? Are you saying that I am missing the lines of code > 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, > R

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

[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 https://myserver.com/myWS";> it will return the correct json data, with content type "application/ json", and the browser will ask to save the result. When

[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]Company Name:

[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 > > Thanks Karl. I'll look at this more in a bit. but from what I can see I > think you have a solution for me.. > > Sh

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

2009-10-06 Thread David P
Were you able to find a solution to get it working in Firefox? Thank you david On Oct 1, 10:25 am, Vitaly Piven wrote: > Hello David, > > I have similar problem . $.post() sends some "OPTIONS" request instead > of expected "POST" (according to logs of web server

[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";, $.to

[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 b

[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 rows

[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(){ $("#slide-pan

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

2009-06-20 Thread Eric P
oesn't work as I'd expect. The new content appears instantly. $('#div_container').append('hi there!').show('slow'); Thanks for reading, Eric P

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

2009-06-03 Thread P
t; }); > > Jörn > > > > On Thu, May 28, 2009 at 2:19 PM, P wrote: > > > In my form I have a couple of text fields into which the user enters > > links. > > > > > > > > > > Now I want to create a function that runs after the user

[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. Now I want to create a function that runs after the user has entered a link. It should automatically add "http://"; in the beginning of the link if the user forgot it. How do I do that?

[jQuery] A troll on jQuery in Linkedin Q&A 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] 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] 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 ima

[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 tex

[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 he

[jQuery] Re: Show div in div on mouseover

2009-03-10 Thread P
v.box:hover div.links { display:inline; } > > > On Mar 10, 9:13 am, P 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

[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: Lorem ipsum Foo bar Lorem ipsum 2 Foo bar Lorem ipsum 3 Foo bar

[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 wrote: > Is anyone aware of a way to pass some additional context information to the > "success" function of an ajax request? > For instance, he

[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: Best practice for replacing inline HTML function calls w/several arguments with an event handler

2009-02-13 Thread Eric P
product.color + ' ' + product.price); }); Buy Me! Buy Me! Buy Me! On Feb 13, 10:35 am, Eric P wrote: Hi, I'm fairly new to jQuery (been using a few months now). Binding event handlers to HTML objects via jQuery is awesome, but I find myself struggling to find a solid (I.e., be

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

2009-02-13 Thread Eric P
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] 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

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

2008-12-04 Thread Eric P
Hi, Just started messing around with Jörn's tooltip plugin, and I think I found a bug while using IE 6 (not a problem in IE 7 and FF 3). Here's some reference code. http://epierce.freeshell.org/jquery-tooltip-bug/index.html In the example I'm assigning three different tooltips each with their

[jQuery] Re: mixing jQuery with regular JavaScript

2008-10-27 Thread Eric P
reason I had it pounded in my head that everything jQuery needed to defined within the jQuery document instance. Thanks, Eric P.

[jQuery] mixing jQuery with regular JavaScript

2008-10-24 Thread Eric P
simple demonstration. In this example the test() function is not available when the div. $(function(){ function test(){ console.log('hi')} }); hi Any ideas? I'm assuming many others have run into this predicament. Thanks for reading, 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 ha

[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, whe

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

2008-10-08 Thread Jose P. Carballo
startingPosition = i + 1; and then down in the carousel configuration: (hash defaults) start: startingPosition, -- Forwarded message -- From: Jose P. Carballo <[EMAIL PROTECTED]> Date: 2008/10/5 Subject: About JCarousel To: [EMAIL PROTECTED] Hello, first of all thanks fo

[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 objec

[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()" and "prev()" methods, but this only works for sibling. I specifically need to have something to look into siblings and non-siblings. The algor

[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] best practices for scripts dir structure, etc.

2008-09-04 Thread Eric P
makes 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: 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 t

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

2008-08-26 Thread P. Skoog
this: > > http://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 pro

[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] Replace multiple select box options with images

2008-08-25 Thread P
I have a select box that looks like this: 1 2 3 4 5 6 Now instead of showing it as an regular select box I'd like to present images to the user. I have one image prepared if the option is selected: rating_x_selected.gif (where X is the number 1-6) And one image if the option isnt selecte

[jQuery] Pull-down Slider input element

2008-07-22 Thread S P Arif Sahari Wibowo
Hi! I am thinking about a pull-down (pop-up?) slider input element: it show up as a button, but when user click it, a slider show up (or the button basically just extended to a slider), and the user can either just release right there or drag the slider down before releasing. Before I am goi

[jQuery] Replacing DOM Elements While Maintaining Child Elements

2008-07-22 Thread Chris P
Ok, I have this code (I know it's horrific). This Site: Hirsch Branding I want to alter this so the becomes a (I don't need to maintain the classes) and the with a while maintaing the select control. I figured it's done with replaceWith but I can't maintain the select.

[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(''); > > }); > > - Richard > > On Wed

[jQuery] Modifying table cell text

2008-07-02 Thread P
I have a table that looks like this: -- Lorem ipsum Audio 3 Foo Video 2 Bar Video 2 Hello world Audio 1 -- With a little jquery magic I would like to modify the text of the rating cell and have it display an image. This should

[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 F

[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. var stickyFooter = function() { var height =

[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 ref

[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.

[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

[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'); > &g

[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: &g

[jQuery] Trouble applying .show() to descendants

2008-02-12 Thread Nick P
py.show(); But that (I'm assuming, since it didn't really do anything) doesn't apply the show throughout all the block down to the last descendant. How can I apply show to that cloned block to make the hidden fields visible again? Thanks in advance for any ideas and help! I'm relatively new 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, &

[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

[jQuery] Suggest for improve jdMenu

2007-05-06 Thread Javier E. Perez P.
thing, as it add a image to the right of the block, would be good if that space extra will expand the size of the element so don't get the case where it gets in the back of the word. That would be all for now. Saludos. CC: jdsharp at the dot com called gmail :) -- Javier E. Perez P. M