[jQuery] Re: simplemodal next/back functionality

2009-12-31 Thread nevgenevich
I played around with it, taking it step by step closer to my code until i hit an issue, and narrowed it down to modal effects... below is my change to full effects that i'm using for my project, ignore the jQuery vs $, its my way of avoiding certain conflicts when i remove all these effects from m

[jQuery] Re: superfish: disable arrows in first list

2009-12-31 Thread Dasher
Hi Frank, In the "$(document).ready(function() {" area... Below the superfish ("$('ul.sf-menu').superfish({" call... add... $('ul.sf-menu > li > a span').remove(); I found that in this forum somewhere and that worked for me. Good luck

[jQuery] Re: Referring to the current DOM object in a jQuery method parameter list

2009-12-31 Thread Šime Vidas
This should do the job: $("#someid").each(function() { $(this).text($(this).attr("alt")); }); It is longer and more unreadable than your original code $("#someId").text($("#someId").attr("alt")); but you do get rid of redundancy = you do not have to write the same selector twice, which is gener

[jQuery] Re: trying to do Math.min on 3 tds by excluding if one = 0

2009-12-31 Thread Šime Vidas
I'm not sure what youre trying to do here... but the jQuery object does not contain the min() method as a property. To use the Math.min method, you give the values as arguments... var xmin = Math.min(x1, x2, x3);

[jQuery] Re: Does anybody know when jquery 1.3.3 or 1.4 will be released?

2009-12-31 Thread Šime Vidas
I read somewhere, on January 14th

[jQuery] Re: Help on Independent DIV's that toggle!!

2009-12-31 Thread Šime Vidas
Scott, you used A elements as JS triggers which is not proper... the A element is for linking to other web-resources. If you need an element for onclick JS execution, just use a button or a SPAN element The one time where you do bind click event handlers to A elements, is to prevent the defaul

[jQuery] Inserting PHP encoded (htmlspecialchar) into textarea from JSON object

2009-12-31 Thread M Dennis
1) I'm essentially trying to take this string (which is stored properly and returns properly from the mysql database): This is a test paragraph to test the DIRNET system. Trying to test's and characters \. "this is another test" with @ and a #.This is a test paragraph to test the DIRNET system.

[jQuery] Re: Referring to the current DOM object in a jQuery method parameter list

2009-12-31 Thread Scott Sauyet
On Dec 31, 1:19 pm, Nathan Klatt wrote: > But, that seems like too much code for jQuery. :) I want something > like: > > $someId.text(self.attr("alt")); I've often wanted something like that too. Unfortunately... > This doesn't work: > > $someId.text($(this).attr("alt")); > > Does that function

[jQuery] Re: Does anybody know when jquery 1.3.3 or 1.4 will be released?

2009-12-31 Thread Bruce
Thanks for the info. I will check out the new beta to fix my stack overflow. On Dec 31, 2:38 pm, Dave Methvin wrote: > There should be an announcement of another beta within a few days. The > stack overflow has been reported/fixed.

[jQuery] Re: Does anybody know when jquery 1.3.3 or 1.4 will be released?

2009-12-31 Thread Dave Methvin
There should be an announcement of another beta within a few days. The stack overflow has been reported/fixed.

[jQuery] Does anybody know when jquery 1.3.3 or 1.4 will be released?

2009-12-31 Thread Bruce
Does anybody know when jquery 1.3.3 or 1.4 will be released? I am using 1.4 pre but I got statck overflow 1456 error in IE. Thanks Bruce

[jQuery] Referring to the current DOM object in a jQuery method parameter list

2009-12-31 Thread Nathan Klatt
Hi y'all, I have a case where I want to do something like: $("#someId").text($("#someId").attr("alt")); I can avoid making duplicate selections like this: var someId = $("#someId"); $someId.text($someId.attr("alt")); But, that seems like too much code for jQuery. :) I want something like: $so

[jQuery] jquery v1.3.2, [autocomplete] v1.0.2 - working but confused solution to json ajax data formatted

2009-12-31 Thread Michael Lang
I am currently using jquery 1.3.2, some jqueryui 1.7.2 (tabs, datepicker, resizeable), and Jörn Zaefferer's autocomplete plugin 1.0.2 (http://docs.jquery.com/Plugins/Autocomplete). All work together nicely. I've been working on getting my autocomplete inputs working properly. I started to make pr

[jQuery] trying to do Math.min on 3 tds by excluding if one = 0

2009-12-31 Thread hollow
Hi, I'm trying to do Math.min on 3 tds by excluding the ones = 0 7.5 7.25 0 i want to exclude the one = 0 i'm using this actually $("tr." + i).each(function () { var ithis = $("tr." + i + " td:lt(3)").min(); $("tr." + i + " td.r1").empty().append(roundVal(ithis

[jQuery] Re: Help on Independent DIV's that toggle!!

2009-12-31 Thread Scott Sauyet
On Dec 30, 8:00 pm, "Erik R. Peterson" wrote: > Wow...  I'm just now getting back to this and I am totally messed up.   > > I never thought it would be such a challenge. It's not that this is a challenge. There are many different directions you could go from here. You didn't supply a sample pag

[jQuery] FLY your NEW YEAR wish now....You'll love this :D

2009-12-31 Thread Praveena Sarathchandra
JUST ONE MORE HOUR LEFT before we step into a Brand new year 2010! FLY your New Year wish now at http://labs.mybiz.lk/Welcome2010/ My last app for this year :D Best Regards, Praveena J. Sarathchandra Freelance Web Designer/Developer [...@] pravee...@gmail.com [M] +94-77-6275266 [W] www.

Re: [jQuery] Re: simplemodal next/back functionality

2009-12-31 Thread brian
On Thu, Dec 31, 2009 at 2:13 AM, nevgenevich wrote: > > it generates the link properly, when clicking on it: it closes the > modal but does nothing else. i can verify with a console.log that it > gets to after the call to open the previous modal, but it doesnt open > anything. checked to make

[jQuery] Re: animate() not working for opacity in IE

2009-12-31 Thread Šime Vidas
This filter property is causing your problem, just remove it... You can see here, if you just set the opacity, it'll work fine even in IE... http://vidasp.net/jquery-example4.html

Re: [jQuery] jquery.js and jquery-1.2.6.pack.js conflict

2009-12-31 Thread brian
You should only load one of those files. The version included with jCarousel is there as a convenience. It's not necessary to use it if you already are loading jQuery. It's likely the unpacked version is newer, anyway. On Thu, Dec 31, 2009 at 7:21 AM, Mr.Aaqib wrote: > Hi, > > Recently i created

[jQuery] Re: jQuery + OOP + AJAX

2009-12-31 Thread Scott Sauyet
On Dec 31, 4:25 am, fran23 wrote: > the target variable in your sample code has a $-prefix ($target). I think > this is just an eye-catcher for variables - a similar coding to php. If not > - if it has to do with something special in Javascript or jQuery - please > let me know ... "$" is just a r

Re: [jQuery] slow pop-up on IE8

2009-12-31 Thread Karl Swedberg
Yes, there is something in jquery.cluetip that will cause this. It binds event handlers to every single element you specify in the selector. The clueTip plugin is not a viable solution for thousands of tooltips on a page. I recently wrote a series of posts on learningjquery.com about one wa

[jQuery] getJSON Problem

2009-12-31 Thread Mad-Halfling
Hi folks, I've got an issue with the getJSON command. It's all working fine apart from if the map data contains < followed by a letter. If there is a space in there, "< a" for example, or a number "<1" it is fine, but with "

[jQuery] slow pop-up on IE8

2009-12-31 Thread Tarha Kettunen
Hello If I have lot off (3000) pop-ups on single page, IE8 will freeze. Firefox is doing fine. Is there something in jquery.cluetip.js that could cause this, or should I contact Microsoft?

[jQuery] jquery.js and jquery-1.2.6.pack.js conflict

2009-12-31 Thread Mr.Aaqib
Hi, Recently i created menu and image gallery. I used jquery.js for menus and for image gallery i used jquery-1.2.6.pack.js as provided by carousels galleries. Now both of them does not work at same time. If i include both file image gallery script generates error message and if i remove the menus

Re: [jQuery] jQuery + OOP + AJAX

2009-12-31 Thread fran23
> > > First of all, does the click have to be in the last paragraph itself? > > > Or could it be in some parent container of the paragraphs? > > > [...snip...] > > > > fran wrote ... > > it's not possible to use the parent, I need the identified paragraph in > the > > ajax-call > > I guess the que