[jQuery] Re: Jquery not running ie and firefox

2007-04-14 Thread Ⓙⓐⓚⓔ
isn't it weird that even the best browser (firefox) requires script.../script in xhtml! On 4/13/07, Leonardo K [EMAIL PROTECTED] wrote: Change this script type=text/javascript language=javascript src=jq/jquery.js / to script type=text/javascript src=jq/jquery.js/script Should work...

[jQuery] Re: Font Size Plugin Take 2

2007-04-14 Thread codemonkey
Sure is mate check out my blog. http://monkeysoft.com.au/blog codemonkey wrote: Ok its posted under plugins in the userinterface section (see howlong until its remove :( heh). Let me know how it goes. Made a few changes added reset function. Next will remove the need for the cookies

[jQuery] Re: Autocomplte plugin status

2007-04-14 Thread Jörn Zaefferer
Klaus Hartl schrieb: After all, I think scratch that tabbing... it really seems it is not expected behavior! Ok Klaus. Anything else you had on your mind? Does the formatRow option suffice to change the size of certain results, or did you do any modifications for that? -- Jörn Zaefferer

[jQuery] Re: Google Toolbar Messages Strike Again!

2007-04-14 Thread Rick Faircloth
Thanks, Jorn! :o) Rick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: Saturday, April 14, 2007 6:10 AM To: [EMAIL PROTECTED] Subject: [jQuery] Re: Google Toolbar Messages Strike Again! Rick Faircloth schrieb: Flip-flopping the

[jQuery] Re: Jquery not running ie and firefox

2007-04-14 Thread Sharique
Its working. But only with jq/jquery.pack.js not jq/jquery.js Any way Thanks, On Apr 14, 11:25 am, Leonardo K [EMAIL PROTECTED] wrote: Change this script type=text/javascript language=javascript src=jq/jquery.js / to script type=text/javascript src=jq/jquery.js/script Should work...

[jQuery] Why is IE not able to run this code?

2007-04-14 Thread Rick Faircloth
I'm still trying to figure out why this code runs well on FF, but not on IE when using blur...Jorn, anybody else have any ideas? IE just locks up every time I click in one field, then in another. I've used keyup instead of blur and it works, but I'd really prefer blur. Thanks, Rick

[jQuery] Convert xml tree to ordered list with jQuery

2007-04-14 Thread systemaddict
Hello I've got an external xml file like this: items item1/item item2 item2.1/item item2.2//item /item item3 item3.1/item /item /item Now, how would I make this into a nice ordered list like this with jQuery: ol li1/li li2

[jQuery] columnManager plugin update

2007-04-14 Thread Roman Weich
Hi all, I've just released a new version of the columnManager plugin (which can collapse/expand whole table columns). Thanks to Matt Kruse and his table library the plugin now supports tables with colspans and rowspans. You can take a look at it here:

[jQuery] viewportCenter() plugin now in beta...

2007-04-14 Thread Giant Jam Sandwich
Hey All, The viewportCenter() plugin is now in beta, and is available here: http://www.reindel.com/blog/src/jquery_viewport_center/ A few things to note: Unlike the center() plugin, this is a mechanism for centering in the viewport, not the parent element. You won't have to download the

[jQuery] Re: viewportCenter() plugin now in beta...

2007-04-14 Thread Roman Weich
Giant Jam Sandwich schrieb: Hey All, The viewportCenter() plugin is now in beta, and is available here: http://www.reindel.com/blog/src/jquery_viewport_center/ Hi Brian, it works nice in FF2 and Opera9.1. How about an option to use percentage values instead of pixels? That way it would

[jQuery] Re: Convert xml tree to ordered list with jQuery

2007-04-14 Thread Ⓙⓐⓚⓔ
sure looks like the reasonable start! but you'll get all the 'item's in that loop regardless of their nesting. You need just the children of items first, then deal with their children, perhaps recursively. On 4/14/07, systemaddict [EMAIL PROTECTED] wrote: Hello I've got an external xml file

[jQuery] jQuery Interface Elements - Demo Selectable Images gone

2007-04-14 Thread Franz Buchinger
Hi, I'm very interested in the jQuery Interface project - the widgets shown there really rock... As I'm developing a Web based photo organiser, I was especially interested in the Selectable Images demo shown on the Interface Website. It allowed to select multiple images by pressing the Ctrl Key

[jQuery] Re: Using TableSorter with hide()/show() on table rows

2007-04-14 Thread David Hucklesby
On Fri, 13 Apr 2007 10:53:49 -0700, Chris W. Parker wrote: Hello, Is there anyway to tie rows in a table together so that when TableSorter sorts the table it will always keep the rows together and in the same order? By tying them together via an additional column to sort by, perhaps?

[jQuery] Re: IE will not eval this: eval(function(){alert('iesucks')})() Any ideas?

2007-04-14 Thread Ⓙⓐⓚⓔ
javascript:eval((function(){alert('iesucks')})()) ??? On 4/14/07, Daemach [EMAIL PROTECTED] wrote: IE doesn't seem to like to eval anonymous functions. Is there a way around this other than to strip the function wrapper? I know you should normally avoid using eval for anything but I do have

[jQuery] How to load picture after picture (take 2)

2007-04-14 Thread wyo
I've now reworked my sample and it finally loads picture after picture yet it doesn't show them. My code is now var files = new Array(); files = ?PHP echo $json-encode ($files) ?; var pos = 0; (pos 0)? $('#prev').show(): $('#prev').hide(); (pos (files.length-1))?

[jQuery] Re: IE will not eval this: eval(function(){alert('iesucks')})() Any ideas?

2007-04-14 Thread Daemach
Outstanding! Thank you very much... On Apr 14, 10:49 am, Matt Kruse [EMAIL PROTECTED] wrote: On Apr 14, 12:42 pm, Daemach [EMAIL PROTECTED] wrote: IE doesn't seem to like to eval anonymous functions. Is there a way around this other than to strip the function wrapper?

[jQuery] Re: How to load picture after picture (take 2)

2007-04-14 Thread wyo
On 14 Apr., 20:18, wyo [EMAIL PROTECTED] wrote: Okay found the mistake myself just after posting. $('#files').html('img src='+files[pos]+' $('#pictures').html('img src='+files[pos]+' div id=pictures echo img src=\$files[0]\ class=\picture\; /div O. Wyss

[jQuery] Re: IE will not eval this: eval(function(){alert('iesucks')})() Any ideas?

2007-04-14 Thread Diego A.
And for those who don't get what's going on... eval(function(){alert('iesucks')}) creates a function, but doesn't execute it. eval(function(){alert('iesucks')}()) creates the function and executes it immediately... On Apr 14, 6:49 pm, Matt Kruse [EMAIL PROTECTED] wrote: On Apr 14, 12:42 pm,

[jQuery] Table of Contents (TOC) plugin

2007-04-14 Thread DaveG
The TOC plugin listed on the plugins page seems not to work correctly with the latest version of jQuery. It shows only the first occurrence of the first heading level. Does anyone have any insight into what happened, or alternatively is there an alternate TOC plugin somewhere? Test page (linked

[jQuery] Re: columnManager plugin update

2007-04-14 Thread Kristinn Sigmundsson
Looks cool, might be of use in some projects. Not surprisingly it works in IE7. //Kristinn On 4/14/07, Roman Weich [EMAIL PROTECTED] wrote: Hi all, I've just released a new version of the columnManager plugin (which can collapse/expand whole table columns). Thanks to Matt Kruse and his

[jQuery] Re: jquery page jump

2007-04-14 Thread Allan Mullan
You need to do an onclick=return(false); to prevent this... Allan Tom Shafer wrote: how do I prevent the page from jumping back to the top when calling scrollto from the interface plugin http://dev.unfetteredpress.com/story/Chavez_to_shut_down_opposition_TV# click on add comment

[jQuery] Re: Table of Contents (TOC) plugin

2007-04-14 Thread Jörn Zaefferer
DaveG schrieb: The TOC plugin listed on the plugins page seems not to work correctly with the latest version of jQuery. It shows only the first occurrence of the first heading level. Does anyone have any insight into what happened, or alternatively is there an alternate TOC plugin somewhere?

[jQuery] selecting elements containing colons

2007-04-14 Thread Sean Catchpole
I know that jQuery made the decision not to allow selection of elements with colons in them, however it is valid XML. Here is an example piece of code I am getting back from an ajax call: item news:specialFree chicken!/news:special /item Any ideas how I can select the news:special item? ~Sean

[jQuery] Round corners and jQ conversion help

2007-04-14 Thread DaveG
I'd like some improvements feedback and some verification of my attempt to jQueryize the code here http://www.456bereastreet.com/archive/200505/transparent_custom_corners_and_borders/ What I have seems to work just fine, but I'm concerned that I'm not reading the original correctly. Here's what

[jQuery] Why this code is so slow?

2007-04-14 Thread Web Specialist
Hi all. I have a form with more than 50 fields using tabs, form validate and highlight plugins with dependent fields inside. After click in Save button, all validation routine occurs after 10 seconds. For me this is very slow. What do you think about? It's possible to do a fine tuning in that

[jQuery] Webrocket: My new jQuery-powered CMS

2007-04-14 Thread digital spaghetti
Hey folks, Bit of a shameless plug here, but I'd like to announce to you my project - Webrocket. It's a CMS built on CakePHP, and using jQuery for all it's JavaScript. Currently it uses AJAX functions to load most of the pages. I've currently been working on this for a work project, however

[jQuery] Re: jquery page jump

2007-04-14 Thread Tom Shafer
Yea that does work. Here is what I have on the onsubmit onclick=\$('#comment.$row2['feedbackID'].').slideToggle('slow');$ ('#scrollLink.$row2['feedbackID'].').ScrollTo(1500); return false;\ please note that this came from php On Apr 14, 6:26 pm, Allan Mullan [EMAIL PROTECTED] wrote: You need

[jQuery] Re: Table of Contents (TOC) plugin

2007-04-14 Thread Joel Birch
On 15/04/2007, at 6:39 AM, DaveG wrote: Does anyone have any insight into what happened, or alternatively is there an alternate TOC plugin somewhere? I made a contentMenu plugin that does something very similar to this from what I can tell. Here is the basic code - sorry, no demo page or

[jQuery] Re: selecting elements containing colons

2007-04-14 Thread Dan G. Switzer, II
Sean, I know that jQuery made the decision not to allow selection of elements with colons in them, however it is valid XML. Here is an example piece of code I am getting back from an ajax call: item news:specialFree chicken!/news:special /item Any ideas how I can select the news:special item?

[jQuery] Re: Autocomplete plugin status2

2007-04-14 Thread Dan G. Switzer, II
Jörn, for anyone interested in the progess of the autocomplete plugin I've uploaded the current demo: http://jquery.bassistance.de/autocomplete/ Two quick things I noticed (both of which you may be aware of.) 1) If you type in Spp in the any of the City searches, the results don't go away.

[jQuery] custom selecters

2007-04-14 Thread Tom Shafer
Hi, i need to be able to find all elements with a div id of something like divname plus some randmom number, each div id will be like this, so something like divname324 or divname453 so how can I select all divs with a name divname plus some random numbers $(#divname + random number).ajaxForm({

[jQuery] Re: Autocomplete plugin status2

2007-04-14 Thread Dylan Verheul
I love the fact that you still use my birds example :-) (I wrote autocomplete for the form on www.waarneming.nl, a Dutch site for nature sightings, and I used a dump of our English and Latin bird names to fill search.php). On 4/15/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Hi folks, for

[jQuery] Re: custom selecters

2007-04-14 Thread Evan
Tom, You could do it one of two ways: 1) When you generate your random divs, just assign them all a classname div class=random id=divname1234content/div Then use $('div.random').doStuff(); 2) You could get all divs in the dom and check whether their id attribute matches div[0-9]+, something