[jQuery] Re: simple lightbox

2009-09-25 Thread Scott Haneda
This is a quick and dirty way to show you the basics of how you may want to approach it. I wrote this off the top of my head, and will leave positioning up to you, but the basic concepts should be there: http://dl.getdropbox.com/u/340087/Drops/09.25.09/lightbox-617a096a-225212.html -- Scott

[jQuery] simple lightbox

2009-09-25 Thread runrunforest
Hi, I want a really simple hard coded lightbox. Can some one teach me how to trigger a div in the center of page, if i click the close button inside, it will close back up and if i click somewhere outside the div, it will also close. I guess just that simple as that.

[jQuery] Re: getJSON callback not firing?

2009-09-25 Thread Rick Faircloth
Well...I'm a "self-taught", "learn-it-as-I-go", programmer. So there are a lot of fundamentals that I probably don't know that would be in the programming 101 class. I was just speaking from the limited experience of changing a "post" which was being used to just "get" some info from a query, to

[jQuery] Re: getJSON callback not firing?

2009-09-25 Thread MorningZ
"the method as "post", occasionally venturing to use "get" when just retrieving data, just to see what might happen.nothing different. " Wow, really? knowing the difference between GET an POST are pretty fundamental things to know as a programmer http://www.google.com/search?q=get+vs+post It'

[jQuery] Re: Trying to use fadein and fade out with mouseover and mouseout functions.

2009-09-25 Thread Aaron
Hi, what I want is to use a IF statement on the mouseout function. So based on the conditions it will use the fade out function when the mouseout effect occures according to those conditions. That means that the conditions are that if the mouse moved off the menus background then as long

[jQuery] Re: Prevent jagged text in IE

2009-09-25 Thread James
What happens if you set a solid background-color to the element that holds the text? On Sep 25, 3:08 pm, "Dave Maharaj :: WidePixels.com" wrote: > Thanks, > > Will give it a shot. > > Dave > >   _   > > From: Rick Faircloth [mailto:r...@whitestonemedia.com] > Sent: September-25-09 9:48 PM >

[jQuery] Re: Elements with similar names

2009-09-25 Thread comslash.com
wow way to many of us jumped on that post at the same time On Sep 25, 10:19 pm, "comslash.com" wrote: > try > > $('input[name^=tx_qtde]') > > try this page for reference on selectorshttp://docs.jquery.com/Selectors > > Chris > > On Sep 25, 10:12 pm, Carlos Santos wrote: > > > I have in one form

[jQuery] Re: Elements with similar names

2009-09-25 Thread comslash.com
try $('input[name^=tx_qtde]') try this page for reference on selectors http://docs.jquery.com/Selectors Chris On Sep 25, 10:12 pm, Carlos Santos wrote: > I have in one form, many, many text fields with similar names such > as: > > tx_qtde1 > tx_qtde2 > tx_qtde3 > > how i can select all this t

[jQuery] Re: Elements with similar names

2009-09-25 Thread Charlie Griefer
$('input[name^=tx_qtde]') See "Attribute Filters" at http://docs.jquery.com/Selectors On Fri, Sep 25, 2009 at 7:12 PM, Carlos Santos wrote: > > I have in one form, many, many text fields with similar names such > as: > > tx_qtde1 > tx_qtde2 > tx_qtde3 > > how i can select all this text fields wi

[jQuery] Re: Elements with similar names

2009-09-25 Thread James
http://docs.jquery.com/Selectors Look at the Attribute filters. Assuming they're all INPUT fields: $("input[name^=tx_qtde]") which means all input fields with NAME that begins with 'tx_qtde' Otherwise you can just drop the 'input' $("[name^=tx_qtde]") but it'll look through all element types. O

[jQuery] Re: Ajax load function - different php each time?

2009-09-25 Thread James
Pass in certain GET or POST data based on the request. $("#DIV1...").load(some.php?id=dothis); $("#DIV2...").load(some.php?id=dothat); $("#DIV3...").load(some.php?id=monkeyseemonkeydo); On Sep 25, 4:04 am, thodoris wrote: > I am developing a webpage that is jquery powered. Many div-hotspots in

[jQuery] Elements with similar names

2009-09-25 Thread Carlos Santos
I have in one form, many, many text fields with similar names such as: tx_qtde1 tx_qtde2 tx_qtde3 how i can select all this text fields without using a class, something like: $("tx_qtde * ") where the * is the numbers. Thanks for your time. Carlos Santos

[jQuery] Re: marking a link as visited

2009-09-25 Thread James
The CSS visited is triggered by whether it's in the browser history. Since they're not really adding an entry to the history, you'll probably need a workaround. Perhaps saving the link ID (or session ID to data elsewhere) in a persistent cookie, and changing the style of the link based on whether

[jQuery] Re: How to rename cloned element id (increase by one)?

2009-09-25 Thread comslash.com
I haven't test this but its modified from another set of code i have that is working to do this var idNumber = 1; function addElement(id){ if($('#span1').html()){ $('#span1').append($('#' + id + idNumber).clone()); $('#span1 #' + id + idNumber).attr('id',

[jQuery] Re: Prevent jagged text in IE

2009-09-25 Thread Dave Maharaj :: WidePixels.com
Thanks, Will give it a shot. Dave _ From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: September-25-09 9:48 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Prevent jagged text in IE I include a reference to a file with this jQuery code in every page to solve that

[jQuery] Re: How to rename cloned element id (increase by one)?

2009-09-25 Thread brian
But what if there's already a #span2 in the document? Perhaps it would be better to give it the ID span1_1 (or similar). On Fri, Sep 25, 2009 at 6:31 PM, jan1979 wrote: > > > Hello. > > I have following code: > >  function addElement(id) { >    $(document).ready(function(){ >        if ( $("#sp

[jQuery] Re: Prevent jagged text in IE

2009-09-25 Thread Rick Faircloth
I include a reference to a file with this jQuery code in every page to solve that problem, Dave. Best solution I've found so far. I got it from someone, somewhere, but don't remember who. Rick jQuery.fn.fadeIn = function(speed, callback) { return this.animate(

[jQuery] Re: Prevent jagged text in IE

2009-09-25 Thread Michael Geary
Make sure the text opacity is 100%. Don't fade it in. IE renders non-antialiased text when opacity is less than 100%. If that's not it, post a link to a test page. -Mike On Fri, Sep 25, 2009 at 4:56 PM, Dave Maharaj :: WidePixels.com < d...@widepixels.com> wrote: > I have content that loads in

[jQuery] Prevent jagged text in IE

2009-09-25 Thread Dave Maharaj :: WidePixels.com
I have content that loads into a div and in every browser except IE it renders fine. In the wonderful IE it comes in jagged...sometimes it "snaps" after and looks normal but for the most part its all jagged. The page is a white bg with text rendering into of it. Howcan I fix this so it looks normal

[jQuery] Re: Trying to use fadein and fade out with mouseover and mouseout functions.

2009-09-25 Thread Aaron
no, the problem I have is that I set a mouseout function from jquery on the menus background. This background is a box blue square. On this square is buttons that once clicked takes you to different pages. These buttons are more linke image links. Well when the mouse moves over to the image link

[jQuery] How to rename cloned element id (increase by one)?

2009-09-25 Thread jan1979
Hello. I have following code: function addElement(id) { $(document).ready(function(){ if ( $("#span1") ) { $(id).clone().prependTo("#span1"); } }); } How can I rename cloned element? Should be fine to increase its name by one, e.g.: o

[jQuery] Re: getJSON callback not firing?

2009-09-25 Thread Rick Faircloth
Hang in there, Charlie! My head was very bloody from banging it against the wall when I first started down the AJAX road. Now I'm finally getting some work done with it! I almost gave up several times. fwiw, I have always used the $.ajax method without any problems and typically specify

[jQuery] Re: if opera...... else

2009-09-25 Thread KeeganWatkins
hi a1anm, if it's a CSS property, you can always determine that without relying on the deprecated $.browser object... $(function() { // Check for the property you are interested in. Will be a Boolean value var opera = typeof $("body")[0].style["OperaOnlyCSSProp"] === "undefined";

[jQuery] Re: validate - if "other" checked --> require input box

2009-09-25 Thread KeeganWatkins
are you using the validate plugin? i'm not familiar with it at all, but for a simple validation like this you could do: // DOM-ready handler $(function() { // Listen for "onsubmit" events for the form $("#signupForm").submit(function() { // Get the checkbox

[jQuery] Re: Each function gives errors in IE6

2009-09-25 Thread KeeganWatkins
hey Shane, Nick's comments above simply reinforce the need for explicit variable declaration. ignoring the "var" keyword, even when picking names that don't collide with properties of the window object, is a dangerous practice. it leads to hard-to-spot bugs, scope issues, and a whole mess of othe

[jQuery] Re: Wait until animation completed - callback?

2009-09-25 Thread William Chang
I don't know how complex the user interface you're making, but if you're asking for a callback after completing the "slideToggle()" animation, then overload the method with a second argument which is the callback function. $('#51').slideToggle('fast, function() { // Do something after element

[jQuery] Re: Unlock Documentation

2009-09-25 Thread Scott Haneda
I went through all the plug-ins pages last night. There are a good deal, 10% maybe, that 404 or go to the wrong place. If I go in and delete those, that is all I am going to be doing, deletes. Will these be rolled back since I am only deleting? Should they even be deleted? Should I

[jQuery] Re: Convert MooTools to jQuery

2009-09-25 Thread KeeganWatkins
hi GonzoDesign - this is a straight port. i'm not that familiar with mootools, so one aspect that may be off is the selection of elements. i'm assuming $ ('europe') returns the element with an ID of "europe" but if not you'll need to change the ported selectors. you can read up on how jQuery impl

[jQuery] Re: Wait until animation completed - callback?

2009-09-25 Thread Merlin
The timeout sounds logical. I would like to try it, but somehow jquery does not know that function: http://docs.jquery.com/Special:Search?ns0=1&search=setTimeout&go= I am pretty new to jquery. Could you post some code that fits into this one: onmouseover="$('#51').slideToggle('fast');$('.subcateg

[jQuery] Re: Fancybox from alt text

2009-09-25 Thread amuhlou
it looks like you have an extra $ inside your wrap method, and you also may need to add the . And it looks like your code may need to account for the space between the href and class attributes. something like: $(this).wrap('') On Sep 25, 1:44 pm, casperMC wrote: > hi, > > im trying to wrap a

[jQuery] Re: load callback doesn't wait for completion

2009-09-25 Thread amuhlou
can you post a snippet or test page of how you're using the load method? it's really hard to figure out why it might not be working without any code samples. On Sep 25, 5:07 pm, rodeored wrote: > How do I get the callback for load() to wait until the load is > complete?

[jQuery] Validation parity client/server (was: Re: getJSON callback not firing?)

2009-09-25 Thread Scott Haneda
What do you think about getJSON for simple "is username available" type checks? I'm thinking, go with the simple and more compact method. Return your errors in JSON and parse them out. Since these are just quick "exists in database" lookups, the chances of failure are low. If they do fa

[jQuery] Re: getJSON callback not firing?

2009-09-25 Thread MorningZ
$.getJSON is a convenience/wrapper method around the $.ajax call... so is $.getScript and $.get and $.post just open up the unpacked version of jQuery and search for "getJSON" and you'll see this first hand On Sep 25, 3:07 pm, Charlie Griefer wrote: > Z: thanks for the response.  I'm making my

[jQuery] problem with $('.class').animate({scrollTop: x}) in Safari

2009-09-25 Thread Sergio de la Garza
Hello, I have a problem with safari behaving weird with a custom Slider I'm making, what it does is like reseting the scrollTop value to 0 when jumping from one item to other making the animation look pretty bad, the behavior in FF is as expected. The code is here: http://pastie.org/630593 Ch

[jQuery] Convert MooTools to jQuery

2009-09-25 Thread GonzoDesign
I know this is sloppy code, I'm more of a HTML and CSS person than JavaScript person. The thing is this code does exactly what I need it to do. This is done with mootools and it conflicts with some other jQuery things going on, on the page. I would REALLY appreciate any help anyone could give me.

[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] Documentation Recommendation

2009-09-25 Thread Rick
It should be noted that you are able to pass in jQuery objects to html () (and probably the others append() ...)

[jQuery] Re: getJSON callback not firing?

2009-09-25 Thread Charlie Griefer
Z: thanks for the response. I'm making my initial foray into using jQuery for AJAX (up 'til now, had only used it for page manipulations). Given your response... would there ever be a situation where .getJSON() would be preferable to .ajax()? It seems odd that jQuery would have 2 methods that es

[jQuery] Re: getJSON callback not firing?

2009-09-25 Thread MorningZ
I'd suggest using the more generic $.ajax method so you can actually catch the error, as the $.getJSON fails silently, which is no good for programmers :-( $.ajax({ type: GET, url: "your URL", processData = true, data: {}, dataType: "json", success: function(json) {

[jQuery] jquery.embedquicktime.js

2009-09-25 Thread RealMason
Anyone know how to contact the author of this plug in? Every time I try to send him a question on his site form, it says it was rejected as spam. Or are there any other experts on this plugin out there? I need to figure out how to reverse the replacement that happens when the quicktime controll

[jQuery] getJSON callback not firing?

2009-09-25 Thread Charlie Griefer
Hey all: I've read the docs and googled the heck out of this, but not seeing what the problem is. I'm trying to get some data from the server via the getJSON() method. I do see a response in firebug and I've validated the response data at JSONLint.com. However, the callback function simply will

[jQuery] marking a link as visited

2009-09-25 Thread RealMason
I'm using jquery.embedquicktime.js to play an mp3. Sometimes I have a dozen different mp3s on a page. When a user clicks on the graphical play button, the button is replaced with the Quicktime controller bar. This is all expected behavior. Since the link doesn't actually go anywhere, the link doe

[jQuery] Re: $(document).resize bug?

2009-09-25 Thread MartinBorthiry
On 25 sep, 13:13, Bertilo Wennergren wrote: > MartinBorthiry wrote: > >  I'm trying to do this: > > >  $(document).resize(function(){alert('yea')}); > > >  but doesn't work on firefox or chrome,  only work fine on IE (WTF!) > > >  I'd tryied $('body').resize...  but happen the same. > > >  $(

[jQuery] Re: Load quicktime as needed

2009-09-25 Thread RealMason
Couldn't get this to work but am using jquery.embedquicktime.js and it seems to help. Thanks. On Sep 25, 7:26 am, Mike Alsup wrote: > > My ideal solution would be a list of song titles and a play button. > > When the user clicks the play button, the quicktime play is revealed > > below the title

[jQuery] Re: Load quicktime as needed

2009-09-25 Thread RealMason
Thanks. I actually don't want to use Flash at all since it is not iPhone compatible, but thanks. On Sep 25, 7:32 am, allenm541 wrote: > Actually, after reading over your post again, it looks like what you > need is to set autoBuffering: false > autoBuffering: false will prevent the media from lo

[jQuery] jquery slideshow

2009-09-25 Thread Shravan Garlapati
Hi, I want to use jquery slideshow. I have a side menu bar with 15 different options. When I choose an option from menu bar, different slide shows must appear in the same div. I would really appreciate if any body can help me with this. Shravan.

[jQuery] (validate) submit form in lightbox?

2009-09-25 Thread Loony2nz
Hello all, I have a form that opens up in a lightbox (shadowbox to be exact). And I'm having a heckuva time to get the form in the iframe to submit. i'm using the submitHandler option within the validate plugin like so: submitHandler: function(form) { form.submit();

[jQuery] load callback doesn't wait for completion

2009-09-25 Thread rodeored
How do I get the callback for load() to wait until the load is complete?

[jQuery] Re: Lightbox or PrettyPhoto or Fancybox break when submitting content with jEditable plugin

2009-09-25 Thread kyleduncan
sorry just to clarify, the problem CAN still emerge even if you view a prettyPhoto image first, before entering a caption. if you do this, then enter several captions and try to view photos again, it still breaks (sometimes it gets into a weird loop even whereby the first click tries to open the p

[jQuery] Re: Lightbox or PrettyPhoto or Fancybox break when submitting content with jEditable plugin

2009-09-25 Thread kyleduncan
Just to add a bit more detail: my current setup as of right now is still using the jEditable plugin combined with the prettyPhoto image viewer plugin (which i believe is based on lightbox). exactly what happens with this combination of plugins is: 1. if you enter a caption and save it (jeditable

[jQuery] Lightbox or PrettyPhoto or Fancybox break when submitting content with jEditable plugin

2009-09-25 Thread kyleduncan
Hi, i have a site that uses a lightbox based image viewer and the jeditable plugin. basically my site has a photo gallery and below each gallery i have the option to set a caption to the photo. i have done the caption using jeditable and i've also tried using the ajaxForm plugin for jquery to see

[jQuery] Re: XHTML or HTML when creating elements?

2009-09-25 Thread Karl Swedberg
On Sep 25, 2009, at 11:56 AM, Bertilo Wennergren wrote: Karl Swedberg wrote: Internally, jQuery determines whether to use document.createElement by checking the string against a regular expression: rsingleTag = /^<(\w+)\s*\/?>$/ Unless I'm missing something, allowing for both syntaxes wo

[jQuery] Re: $(document).resize bug?

2009-09-25 Thread Bertilo Wennergren
MartinBorthiry wrote: I'm trying to do this: $(document).resize(function(){alert('yea')}); but doesn't work on firefox or chrome, only work fine on IE (WTF!) I'd tryied $('body').resize... but happen the same. $(window).resize work fine but i need to detect when the body's height ha

[jQuery] Re: Parse encoded HTML in XML node

2009-09-25 Thread Bertilo Wennergren
Jeff wrote: I realize that the text() function is returning text, and not the nodes within. How can I return the nodes within, either as a jQuery object or the DOM nodes themselves, rather than the text, so I can actually parse them? The basic problem is probably that there are no nodes with

[jQuery] Ajax load function - different php each time?

2009-09-25 Thread thodoris
I am developing a webpage that is jquery powered. Many div-hotspots in the page is ajax powered and they should update dynamically. For example number of ratings average rating number that a video is favoured Now i am doing this: $("#DIV1...").load(some1.php); $("#DIV2...").load(some2.php); $("#D

[jQuery] Fancybox from alt text

2009-09-25 Thread casperMC
hi, im trying to wrap a fancybox link around each image on a site, which has an alt tag specified. Right now i have this html markup: And this javascript-code: $(document).ready(function() { $("img[alt]").each(function(){ $(this).wrap($('')); }); $(".fancyBoxImage").

[jQuery] Tabbed data views, without IDs

2009-09-25 Thread amarquis
Hello, I've looked at a couple of tutorials focused on having some sort of clickable elements that emulate tabs - hiding all but the div associated with that element. Both of those tutorials focus on adding IDs to the elements involved and a handler for each. This is rough on a web app that is de

[jQuery] slidedown menu

2009-09-25 Thread dima_mak
I am trying to do an slidedown menu with hover function: Javascript: Code: $(document).ready(function(){ $("#rightmenu ul li").hover( function () { $(this).find("ul:first").stop(true, true); $(this).find("ul:first").slideDown(); }, function () {

[jQuery] Re: Every post I make, I get an mail error.

2009-09-25 Thread Bertilo Wennergren
evo wrote: Everytime I post to this group through thunderbird, I get a undelivered mail message sent back, everytime. This has only started happening recently and I can't find any info about it anywhere. Just want to know if this is happening to anyone else (as it's only when I post to this gr

[jQuery] Re: XHTML or HTML when creating elements?

2009-09-25 Thread Bertilo Wennergren
Karl Swedberg wrote: Internally, jQuery determines whether to use document.createElement by checking the string against a regular expression: rsingleTag = /^<(\w+)\s*\/?>$/ Unless I'm missing something, allowing for both syntaxes would be trivial. Just change the regex to something like

[jQuery] Re: XHTML or HTML when creating elements?

2009-09-25 Thread Bertilo Wennergren
Vincent Robert wrote: > On Sep 24, 6:33 pm, Bertilo Wennergren wrote: >> I think I read somewhere that jQuery just passes the >> code along to the "innerHTML" function of the browser. >> That would mean that the actual rules are those of the >> browsers' various implementations of "innerHTML" (

[jQuery] Re: XHTML or HTML when creating elements?

2009-09-25 Thread Karl Swedberg
On Sep 25, 2009, at 10:21 AM, Vincent Robert wrote: Actually, jQuery does some parsing by itself first. The $('') syntax is actually a shortcut to document.createElement("span"), and yes, the "/" is required here. So $ ('') will be faster than $('') which will have to go through innerHtml.

[jQuery] Re: Convert Image to PDF

2009-09-25 Thread ryan.j
there is probably some way of doing it server-side and automatically giving the user a link to that, but not in jquery as far as i know file I/O stuff in javascript pretty much relies on being run on localhost too, is this for an Air app? On Sep 25, 3:45 pm, chiru wrote: > Hi friends, >        

[jQuery] Convert Image to PDF

2009-09-25 Thread chiru
Hi friends, I need to convert images(.gif/.png) into PDF format in javascript. Can we do that using jQuery. Is there any plugin to solve my problem.

[jQuery] Re: Wait until animation completed - callback?

2009-09-25 Thread ryan.j
the problem with jquery animation effects is that you can easily chain effects on a single element, but unless you specify a timer of some description or utilise the callback, effects on different elements will execute simultaneously as you're finding. unfortunately you really aren't going to kno

[jQuery] Re: Disabling parent link if children present

2009-09-25 Thread Shane Riley
Are you wanting to just hide the anchor element for link 4 but keep links 4a to 4c visible? Here's a quick example of that scenario: $(function() { $("ul#nav li ul").each(function(i) { $("a:first", $(this).parent()).hide();

[jQuery] Re: Wait until animation completed - callback?

2009-09-25 Thread ryan.j
the problem with jquery animation effects is that you can easily chain effects on a single element, but unless you specify a timer of some description or utilise the callback, effects on different elements will execute simultaneously as you're finding. unfortunately you really aren't going to kno

[jQuery] Re: XHTML or HTML when creating elements?

2009-09-25 Thread Vincent Robert
Actually, jQuery does some parsing by itself first. The $('') syntax is actually a shortcut to document.createElement("span"), and yes, the "/" is required here. So $ ('') will be faster than $('') which will have to go through innerHtml. Regards, On Sep 24, 6:33 pm, Bertilo Wennergren wrote:

[jQuery] Re: cycle plugin and dropdown menu [solved]

2009-09-25 Thread hcvitto
great!! Many thanks Karl!! Vitto On 25 Set, 15:45, Karl Swedberg wrote: > Hi Vitto, > > Add these declarations to your ul#mainNav rule (main.css, line 149) > >    position: relative; >    z-index: 50; > > For IE, you'll probably also need to add these to div#content   > (main.css, line 26) > >

[jQuery] Re: cycle plugin and dropdown menu

2009-09-25 Thread Karl Swedberg
Hi Vitto, Add these declarations to your ul#mainNav rule (main.css, line 149) position: relative; z-index: 50; For IE, you'll probably also need to add these to div#content (main.css, line 26) position: relative; z-index: 1; --Karl Karl Swedberg www.englishrules.com

[jQuery] $(document).resize bug?

2009-09-25 Thread MartinBorthiry
hello: I'm trying to do this: $(document).resize(function(){alert('yea')}); but doesn't work on firefox or chrome, only work fine on IE (WTF!) I'd tryied $('body').resize... but happen the same. $(window).resize work fine but i need to detect when the body's height has been changed by

[jQuery] Re: jQuery plugin help

2009-09-25 Thread Karl Swedberg
Hi Nalum, It's pretty straightforward. Instead of doing this: $.fn.pluginname = function(args) { }; You can do this: $.pluginname = function(args) { }: --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Sep 24, 2009, at 10:59 AM, Nalum wrote: Hello All

[jQuery] Re: Find top-level elements

2009-09-25 Thread Karl Swedberg
Hi Grimace, You should get what you're trying to find by wrapping value in a . Try this inside the success callback: var $value = $(' + value + ''); var body = $value.find('body'); var form = $value.find('form'); var p = $value.find('p'); // Actual paragraphs --Karl __

[jQuery] Re: Trouble with backgroundPosition Plugin

2009-09-25 Thread Karl Swedberg
Not having looked at the plugin, this is just a guess, but the problem might be occurring because you have a repeating background. Try changing this line in your CSS: background:url(../gfx/btn_navbg.jpg) 0px 0px; to this: background:url(../gfx/btn_navbg.jpg) no-repeat 0 0; --Karl

[jQuery] Re: Fix for Giva Labs linkselect plugin

2009-09-25 Thread Karl Swedberg
Nice one! Thanks for posting this. Chances are good that if you ran into the problem, someone else has, too. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Sep 25, 2009, at 2:38 AM, boermans wrote: We noticed an issue with the jquery.linkselect plugin (

[jQuery] Re: How to combine event?

2009-09-25 Thread Karl Swedberg
Hi David, You can combine events with a space in the first argument of .bind(): .bind('type1 type2 type3', function(event) { /*do something*/}); Pass the event object into the anonymous function and then determine which event was triggered with event.type. Here is an example: $('a#cursor'

[jQuery] Re: Free SMS Gateway

2009-09-25 Thread bharani kumar
ya its nice..useful one.. Anything other then this... For india supportable one... On Fri, Sep 25, 2009 at 5:33 PM, Anthony Brown(Worcester Wide Web) < anth...@worcesterwideweb.com> wrote: > http://www.zeepmobile.com/ > > > > bharani kumar wrote: > > Hi All , > > If any one know free sms gatew

[jQuery] Re: Wait until animation completed - callback?

2009-09-25 Thread Merlin
does nobody have an idea? :-( On Sep 23, 5:13 pm, Merlin wrote: > Hi there, > > I am building huge list with subcategories in each category that fade > out once the mouse is placed over the category. It works great, BUT > the problem is, if your mouse goes down the list vertically and the > su

[jQuery] Re: Changing a class name without clicking

2009-09-25 Thread Lleoun
Thanks Liam, worked great! And thanks to all for the approach.

[jQuery] Re: Every post I make, I get an mail error.

2009-09-25 Thread Cyril Lopez
> > evo wrote: > > Everytime I post to this group through thunderbird, I get a > undelivered mail message sent back, everytime. > This has only started happening recently and I can't find any info > about it anywhere. > > Just want to know if this is happening to anyone else (as it's only > when I

[jQuery] Re: Every post I make, I get an mail error.

2009-09-25 Thread Charlie
been getting same thing from same "ekster" domain , also when using Thunderbird. The first time it happened a week or 2 ago the messages it told me couldn't be delivered were 2 months old, now sends back current messages very strange evo wrote: Everytime I post to this group through th

[jQuery] Re: Parse encoded HTML in XML node

2009-09-25 Thread Jeff
Fabian, Here's the js: $(document).ready(function() { $.ajax({ type: "GET", url: "sample.xml", dataType: "xml", success: function(data) { $(data).find('item').each(function() {

[jQuery] Re: Free SMS Gateway

2009-09-25 Thread Anthony Brown(Worcester Wide Web)
http://www.zeepmobile.com/ bharani kumar wrote: Hi All , If any one know free sms gateway server, Please share the details , Thanks

[jQuery] Re: Deactivating parent link with JQuery

2009-09-25 Thread osu
Thanks Ryan for the alternative, However, I need to do the following now (see message above your last post): I need to highlight *only* the top-parent item (the same one I just ran 'return false;' on) with the class 'nav-selected'. Any idea how I could do that? Thanks, osu On Sep 25, 11:1

[jQuery] Free SMS Gateway

2009-09-25 Thread bharani kumar
Hi All , If any one know free sms gateway server, Please share the details , Thanks

[jQuery] Re: Load quicktime as needed

2009-09-25 Thread allenm541
Actually, after reading over your post again, it looks like what you need is to set autoBuffering: false autoBuffering: false will prevent the media from loading until the play button it presses. It differs from autoPlay: false which simply prevents it from player, but buffers anyhow. So, your c

[jQuery] Re: Load quicktime as needed

2009-09-25 Thread Mike Alsup
> My ideal solution would be a list of song titles and a play button. > When the user clicks the play button, the quicktime play is revealed > below the title and ONLY at that moment does the file start > downloading. If you are using the media plugin then just invoke "media" on the desired eleme

[jQuery] Re: Load quicktime as needed

2009-09-25 Thread allenm541
Actually, what I think you're looking for is the Flowplayer option autoBuffering, which differs from autoPlay. autoPlay determines whether or not the video will play automatically, but autoBuffering is a different method that will prevent it from buffering as well. You'll have to learn how to se

[jQuery] Re: IE: Cursor still displays hourglass symbol after unblocking

2009-09-25 Thread Mike Alsup
> > Yes, same problem I posted yesterday... funny we both hit it this > > week.   hopefully someone can help??  I know the author of blockUI > > says he monitors this forum... Hmm, anyone have any ideas for how to force IE to honor the new cursor style without having to move the mouse? One that

[jQuery] Re: Load quicktime as needed

2009-09-25 Thread allenm541
I think I can help. What I suggest is that you become familiar with free and excellent Flowplayer and use it to embed your media files. Here is a link: http://flowplayer.org/ Flowplayer has lots of tools for scripters and jQuery developers. It has two methods that I've found that may be of use

[jQuery] jqTransform + validate bassistance plugin

2009-09-25 Thread Alessandro Cimoli
Hi, i've a problem with input radio validation. I've two radio (accept and don't accept) for the privacy and obviously the users have to click "accept". Here my code: $("#formContactPage").validate({ errorLabelContainer: $("p.error"), rules: { d

[jQuery] [autocomplete] auto complete based on additional input value

2009-09-25 Thread Frank
I'm using one of the examples from the demo files as a template. Basically I'd like to auto suggest hospitals based on the zip code that's entered from another input. Can someone recommend how do accomplish this? TIA This is the local data set: var hospitals = [ { name: "hospital 1",

[jQuery] Re: .click() fires my callback more than once

2009-09-25 Thread allenm541
I've run into this problem many times as well. The issue is that your click function is being bound more than once. To fix it, use the .unbind() method. .unbind() without any parameters will unbind everything bound to that element, including your .click() function. However, if you wish to unbin

[jQuery] Combining functions?

2009-09-25 Thread maltaphilosopher
Hi all, I'm new jquery. I'm trying to create a photo gallery/slideshow using the cycle plugin. There will be three elements, a large graphic, a text section, and a thumbnail gallery of the large graphics. I have the large graphics and thumbnails connected (so when you click on the thumbnail the c

[jQuery] how to get post data from a page loaded in iframe in parent page

2009-09-25 Thread Nils
how to get post data from a page loaded in iframe in parent page

[jQuery] Every post I make, I get an mail error.

2009-09-25 Thread evo
Everytime I post to this group through thunderbird, I get a undelivered mail message sent back, everytime. This has only started happening recently and I can't find any info about it anywhere. Just want to know if this is happening to anyone else (as it's only when I post to this group) This is

[jQuery] Re: Validate Text Field onblur (Bassistance Validation Plugin)

2009-09-25 Thread Dave Buchholz - I-CRE8
Not at the moment, sorry Dave Buchholz On Sep 25, 12:51 am, Loony2nz wrote: > do you have an example of this somehwere?  I think I could use this > for upcoming forms I have in my pipeline. > > Thanks! > > On Sep 1, 10:33 am, Dave Buchholz - I-CRE8 wrote: > > > Got it, this code onfocusout: fu

[jQuery] cycle plugin and dropdown menu

2009-09-25 Thread hcvitto
Hi i'm using the cycle plugin below a dropdown. Problem is that the" dropdowns" stay behind the slideshow. They have position absolute and higher z-index than the slideshow. Any solution? http://www.francesconizzola.it/_demo/ Thanks Vitto

[jQuery] Re: Trying to use fadein and fade out with mouseover and mouseout functions.

2009-09-25 Thread ryan.j
if i'm reading your question right, on the menu button's mouseover function you could call $('#menu').stop() to end any animation effects. http://docs.jquery.com/Effects/stop copy paste some code in jsbin.com if you can, it's always easier to sort stuff like this with code to look at. On Sep 25

[jQuery] Re: Trying to use fadein and fade out with mouseover and mouseout functions.

2009-09-25 Thread ryan.j
if i'm this right, on the menu button's mouseover function you could call $('#menu').stop() to end any animation effects. http://docs.jquery.com/Effects/stop On Sep 25, 4:55 am, "shyhockey...@gmail.com" wrote: > Hi, I am  using the fade in and fade out  and mouse over and mouse > out. > > What

  1   2   >