[jQuery] looking for a calendar plugin

2009-03-18 Thread macsig
Hello guys, does anyone know a calendar plugin for jQuery like this one: http://www.moonkiki.com/moonkiki/moogenda/#JSON Thanks and have a nice day! Sig

[jQuery] group validation error highlighting

2009-03-18 Thread anush
I have a form where I am validating IP address. I am using 4 different textboxes limiting the characters to 3 in each one of them. I am checking the range from 0-255 for each of them using Validate plugin. Now to display a single error message instead of displaying an error message for each of

[jQuery] Re: jQuery.noConflict() and firefox 2: errors - is this a bug?

2009-03-18 Thread mcologne
if i put first jquery.js and then prototype, i don't need jQuery.noConflict(). it works without. i assume that jQuery.noConflict() does not work properly. On 18 Mrz., 01:51, James james.gp@gmail.com wrote: For jQuery.noConflict(), according

[jQuery] Re: looking for a calendar plugin

2009-03-18 Thread Geert Baven
have a look here http://wordpress.bustatheme.com/wp-smashing/and here http: www.bytecyclist.com 2009/3/18 macsig sigbac...@gmail.com Hello guys, does anyone know a calendar plugin for jQuery like this one: http://www.moonkiki.com/moonkiki/moogenda/#JSON Thanks and have a nice day! Sig

[jQuery] Cluetip, opening tip via code

2009-03-18 Thread batuj
Hi, Does anyone have a clue about how to open the tipbox within the code, I tried to meant without user clicking or activating anything when I bind cluetip to a component, I do want the tip box to be open. Thanks...

[jQuery] Re: Tabs dont work.

2009-03-18 Thread Spence
okey, but i thought the way to make the tabs hasnt changed? Does anyone else have something i can try? maybe someone who has had simular problems?

[jQuery] Using 1.3 this: [class!=whatever] doesn't work.

2009-03-18 Thread will
I'm working on a project at the moment and this [class!=whatever] has stopped working. In 1.2.6 I could use this fine, but in 1.3 it doesn't work. For example, if I have two links: a href=#Link/a and a href=# class=whateverLink/a Using a click function like this:

[jQuery] Using jQuery to parse XML

2009-03-18 Thread Matt
EDIT: Sorry for the repost, I was tabbing through the page and accidentally sent before I was done composing. Hi all, I've spent a long time trying to figure out why my code to pull elements out of an XML file isn't working, to no avail. Here's the code snippet I'm using, given an XMLHttpRequest

[jQuery] How to use jquery RESTful for CRUD with standard Rails backend ?

2009-03-18 Thread Husky
I'm looking for an explanation/example, how jquery events on client side, when you e.g. edit or create rows in a jqgrid, are put into valid XHR-messages which can be directly consumed by a standard Rails controller, modifying a backend database behind a model. The application should behave

[jQuery] Using jQuery to parse XML

2009-03-18 Thread Matt
Hi all, I've spent a long time trying to figure out why my code to pull elements out of an XML file isn't working, to no avail. Here's the code snippet I'm using, given an XMLHttpRequest named responseXML which seems to be in fine shape (inspected using Safari 4 beta's Inspect Element feature):

[jQuery] NEED HELP!! JQuery XML not parsing/consuming properly

2009-03-18 Thread slgm
hi, I've looked through at awfaul lot of posts/articles and haven't been able to get this thing working. The xml and the jquery code is below. The problem ive been getting is that despite the xml being successfully load from the ajax call and despite the jquery loop looping through the xml no

[jQuery] Re: Tablesorter update

2009-03-18 Thread tante inferno
great job! maybe a bug: i dont manage to disable sorting for any of the headers. neither by the header option, nor by adding the no-sorter class nor in the default options. anybody with same problem, maybe solution? any help would be greatly appreciated.. thanks On 17 Feb., 16:49,

[jQuery] Re: Validation and Facebox

2009-03-18 Thread byron
In case anyone else stumbles upon this, I will give my solution to the problem (hours later, of course). So the issue is that Facebox is using the clone() method to move the DOM elements around in $.facebox.fillFaceboxFromHref. Now a fix that worked on some of my pages was to simply using the

[jQuery] Re: Cluetip, opening tip via code

2009-03-18 Thread ryan.j
have a look at the hoverClass option On Mar 18, 9:50 am, batuj batuh...@gmail.com wrote: Hi, Does anyone have a clue about how to open the tipbox within the code, I tried to meant without user clicking or activating anything when I bind cluetip to a component, I do want the tip box to be

[jQuery] Re: Tabs dont work.

2009-03-18 Thread MorningZ
You thought incorrectly as for getting help, there is a dedicated jQueryUI mailing list (http://groups.google.com/group/jquery-ui?hl=enlnk=), you'll get more focused help there I took some time to try to get your tabs working yesterday, but the HTML was too messy/overly complex... sorry

[jQuery] Re: Show div in div on mouseover

2009-03-18 Thread ryan.j
works in IE7 8, but yeah it won't work in 6 because the :hover pseudo-class isn't supported on anything but anchors. On Mar 13, 10:42 pm, ggnaba...@garent.com ggnaba...@garent.com wrote: Doesn't work in IE On Mar 10, 7:35 pm, P pst...@gmail.com wrote: Ah... thats too easy. :) Thanks!

[jQuery] Re: Using 1.3 this: [class!=whatever] doesn't work.

2009-03-18 Thread T.J. Crowder
Hi, Is there a != attribute operator? I don't see it in either the CSS2 or CSS3 specs.[1][2] So I'm thinking that since jQuery 1.3 completely replaced the selector engine[3], there was a non-standard (but useful!) extension to the syntax in v1.2 that didn't get carried forward. The good news

[jQuery] Re: $.getJSON isn't working while getting the JSON data from hidden field

2009-03-18 Thread Steven Yang
yes $.getJSON does do eval internally so what your trying to accomplish is, trying to eval a string into javascript object but u dont want to write eval() everywhere right? or i misunderstood your question in anyway?

[jQuery] Re: Using 1.3 this: [class!=whatever] doesn't work.

2009-03-18 Thread T.J. Crowder
Hi again, *blush* Those same docs tell us that != is also supported by Sizzle. Note, though, that: a[class!=whatever] ...is the same as a:not([class=whatever]) ...which is *not* the same as a:not(.whatever) ...because of multiple class names. Example: With these links: a

[jQuery] Re: Cluetip, opening tip via code

2009-03-18 Thread batuj
I couldn't manage to get anything with : hoverClass: 'highlight' option. thanks anyway.. any other ideas? On Mar 18, 12:52 pm, ryan.j ryan.joyce...@googlemail.com wrote: have a look at the hoverClass option On Mar 18, 9:50 am, batuj batuh...@gmail.com wrote: Hi, Does anyone have a

[jQuery] Re: Add option to combo

2009-03-18 Thread lucas
Thanks Paul!

[jQuery] Re: Using 1.3 this: [class!=whatever] doesn't work.

2009-03-18 Thread will
Hi, Using :not() worked great. Cheers Will On Mar 18, 11:09 am, T.J. Crowder t...@crowdersoftware.com wrote: Hi again, *blush* Those same docs tell us that != is also supported by Sizzle. Note, though, that:     a[class!=whatever] ...is the same as     a:not([class=whatever])

[jQuery] jquery website broken?

2009-03-18 Thread iain.wa...@googlemail.com
Hi, I really want to start using jquery in some places to replace mootools, however i find it extremely difficult to persuade clients to go with jquery when the jquery website at http://docs.jquery.com/Main_Page is completely broken in IE7. Is there any reason for this?

[jQuery] draggable/droppable pick some

2009-03-18 Thread CTek
I'm having a headache because I'm trying to make an on-line test. The graphics department wanted to make it all flash, but I said jQuery would do the trick, so please help me prove them wrong. I have a question, with six options, represented as six draggables. I expect three answers, represented

[jQuery] Re: jquery website broken?

2009-03-18 Thread MorningZ
What do you see as broken? the page looks and operates fine for me in IE7 (Windows Server 2008 and IE7) On Mar 18, 9:11 am, iain.wa...@googlemail.com iain.wa...@googlemail.com wrote: Hi, I really want to start using jquery in some places to replace mootools, however i find it extremely

[jQuery] Re: jquery website broken?

2009-03-18 Thread Karl Swedberg
Looks fine to me, too. Can you be more specific about what looks broken? Or provide a screenshot or something? thanks, --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 18, 2009, at 9:21 AM, MorningZ wrote: What do you see as broken? the page looks

[jQuery] Re: jquery website broken?

2009-03-18 Thread iain.wa...@googlemail.com
Hmm that is odd...You can see a screenshot of how its appearing on XP/ IE7 for me at http://www.kre8webdesign.com/tmp/jquery.gif , though it initialy renders correctly, as you can see from screenshot the white background boxes then appear to lose their height :/ On Mar 18, 1:28 pm, Karl Swedberg

[jQuery] Re: show hide random rows

2009-03-18 Thread Sean O
Bob, Try this: http://jsbin.com/esoba Code: http://jsbin.com/esoba/edit It shouldn't matter how YUI is IDing your table rows, as you can pluck them out by index. HTH, SEAN O http://www.sean-o.com http://twitter.com/seanodotcom Bob O-2 wrote: I was wondering if anyone could point me

[jQuery] Re: Can a dialog not show an alert message?

2009-03-18 Thread delphilynx
Anyone any comment about this issue? Thanks in advance!

[jQuery] Re: Cluetip, opening tip via code

2009-03-18 Thread Karl Swedberg
You could trigger the activation event. Something like this, maybe: $('#mytip').cluetip({activation: 'click'}); And then later, when you want to show it: $('#mytip').triggerHandler('click'); Or if you don't have activation: 'click', you could just do this: $('#mytip').trigger('mouseover')

[jQuery] Re: where to load init function with google?

2009-03-18 Thread Milan Andric
So all of the javascript code should go at the end of the html doc, right before closing /body tag? I thought it should go in the header. Sorry for the ignorance, -- Milan On Mar 17, 8:22 pm, mkmanning michaell...@gmail.com wrote: You don't need the callback, but you can call it with:

[jQuery] Re: Ajax - Reload only affected record

2009-03-18 Thread Thiago Vian
Ok. Thats is my code: / READ // $(document).ready(function(){ var $send= $(#send); var $loading = $(#loading); var $content = $(#content); function readRecords(){ $content.hide(); $loading.fadeIn(slow); $.ajax({ type: POST, url: action.php,

[jQuery] Re: Find element. How can I do this?

2009-03-18 Thread shapper
Please, anyone? Thank You, Miguel On Mar 17, 9:46 pm, shapper mdmo...@gmail.com wrote: Yes, I tried that before but it did not work this is why I asked. I placed an example online:http://www.27lamps.com/Beta/Collapse/Form.html You can see that each form's fieldset has an ordered list

[jQuery] Re: Big problem with IE

2009-03-18 Thread weidc
hi, at firefox i can see that all li's get margin-left and margin-right 5em. what if you remove that? or if you give them margin:0 ? it doesn't change something in firefox but it seems to be width which is wrong in ie. On 17 Mrz., 23:55, 3dmagicaldesigns 3dmagicaldesi...@gmail.com wrote: I

[jQuery] Re: Find element. How can I do this?

2009-03-18 Thread AnatolyG
$(fieldset ol:eq(0)).hide() shapper wrote: Hello, I am trying to find update a plugin to create new functionality. On the current version I have the following: var legend = fieldset.find(':first'); var body = jQuery(document.createElement('div')); - How can I get the first OL

[jQuery] Re: NEED HELP!! JQuery XML not parsing/consuming properly

2009-03-18 Thread AnatolyG
hey, http://groups.google.com/group/jquery-en/browse_thread/thread/f6cf0516dacdab18 $(xml).find('row').each(function(index, obj){ document.write($(obj).html() + br/); }); this would work w/ out the CDATA. On Mar 18, 3:27 pm, slgm stephen.llewel...@games-media.com wrote: hi, I've looked

[jQuery] AutoComplete

2009-03-18 Thread Bright Dadson
Hi Experts, I have this autocomplete script; $(#operator).autocomplete(bright/auto.php, { delay:10, lineSeparator: ^, cacheLength: 10, matchSubset:1, matchContains:1, formatItem: formatItem, autoFill: false

[jQuery] Re: Cycle Plugin Pager with Images

2009-03-18 Thread jethom2
Thanks for the help. I am having another problem though. I'm trying to run a script to do a fadeIn on the images that are cycling in, but I can't get it to restart by cycling with the pager. It will start if it cycles by timing of if you wait long enough then use the pager. I've tried

[jQuery] Re: show hide random rows

2009-03-18 Thread Scott Sauyet
Bob O wrote: Basically i have a YUI datatable and i want to use jQuery to hide all but a user generated number of rows that are random selected Something like this might be what you're looking for: http://jsbin.com/ozafa/edit The important part is this: var $rows = $(#myTable tbody

[jQuery] Re: $('.edlBoxArea').corners is not a function

2009-03-18 Thread boy_named_Goo
Problem solved. It turns out that the jquery.js file was being referenced more than once overall (in a pretty large collection of inter-related dynamic pages). In one dynamic page there was this: script type=text/javascript src=./scripts/jquery.js/script script type=text/javascript

[jQuery] embedded elements and document.ready

2009-03-18 Thread redcom
Hello I have a question: Is there a way to know if a custom plugin is ready to work with? I have a inhouse build of a video player , don't have the load event or any other type of event. i use in html: embed id='VideoWin1' class='videoWin' type='application/mozilla-npwindow-plugin'

[jQuery] Re: draggable/droppable pick some

2009-03-18 Thread Richard D. Worth
This should get you started: http://jsbin.com/ixeca - Richard On Wed, Mar 18, 2009 at 7:38 AM, CTek stefan.bergfe...@ctek.se wrote: I'm having a headache because I'm trying to make an on-line test. The graphics department wanted to make it all flash, but I said jQuery would do the trick,

[jQuery] Re: embedded elements and document.ready

2009-03-18 Thread Martijn Houtman
On Mar 18, 2009, at 4:11 PM, redcom wrote: How can i execute a function after the embed element was loaded or the document is fully workable? What I usually do with Flash applets is have them do a call to JavaScript whenever they are ready, and let JS handle the rest. I am not sure, but

[jQuery] Re: jquery website broken?

2009-03-18 Thread Karl Swedberg
very odd. I remember one other person having a problem with the site a while back. I think he was using a Polish version of IE7, but when he switched it or updated it or something, it started rendering just fine. Sorry, my memory is a little fuzzy on that. I wish there were something I

[jQuery] jquery validation on one field or another

2009-03-18 Thread paulswansea
Hi, I have a form with multiple fields, including one for a telephone number and one for an email address, i need the contact to enter in at least one of the above in the form to make it valid, how do i do an either/or check within a jquery validation form?

[jQuery] Re: where to load init function with google?

2009-03-18 Thread MorningZ
There's no reason why script can't go in the header.. Related to your original question, do you feel anything is gained by using script language=Javascript type=text/javascript google.load(jquery, 1.3.1); /script over script type=text/javascript src=http://ajax.googleapis.com/ajax/

[jQuery] Re: Find element. How can I do this?

2009-03-18 Thread shapper
Sorry, I don't understand what your mean. Please, check the code I am using in: http://www.27lamps.com/Beta/Collapse/JQuery.Collapsible-1.0.js The change I am trying to do is in the following lines: var legend = fieldset.find(':first'); var body = jQuery(document.createElement('div'));

[jQuery] Re: jquery website broken?

2009-03-18 Thread donb
It's always had that problem since the new site was created. There are floats not being cleared someplace in there. For what it's worth it's not a reflection on jQuery, but on the package being used to run the site (Wordpress, perhaps?). On Mar 18, 11:26 am, Karl Swedberg k...@englishrules.com

[jQuery] Re: where to load init function with google?

2009-03-18 Thread mkmanning
There's actually good reasons why scripts *shouldn't* go in the header: http://developer.yahoo.com/performance/rules.html#js_bottom Current best practice is to follow unobtrusive DOM scripting, using progressive enhancement. This means separating your scripting into a behavioural layer, just as

[jQuery] Develop Ajax apps 100% faster - thanks to jQuery Raxan PDI

2009-03-18 Thread xwisdom
Hello Everyone, I've created a PHP framework that integrates well with the jQuery library. The framework is called Raxan Framework which includes a Programmable Document Interface (PDI) extension. PDI is an Open Source PHP application framework that's design to take advantage of modern web

[jQuery] namespaces XML parsing

2009-03-18 Thread David
I have had a look at jQuery mailinglist and I have googled, and I have not found a solution to this problem. For example, in FF, if a look for a tag, I have to write ns\\:tag , but if a look for an attribute I have to write ns:attribute. In google Chrome (WebKit), I have to write tag or

[jQuery] Re: namespaces XML parsing

2009-03-18 Thread Martijn Houtman
On Mar 18, 2009, at 5:52 PM, David wrote: For example, in FF, if a look for a tag, I have to write ns\\:tag , but if a look for an attribute I have to write ns:attribute. In google Chrome (WebKit), I have to write tag or attribute and it works. Has this problem been solved, or is there any

[jQuery] Re: namespaces XML parsing

2009-03-18 Thread Michael Lawson
We were running into a similar problem with an AJAX application and here is what we did to get around namespaces: jQuery(entries).find([...@nodename=namespace:elementName]); cheers Michael Lawson Content Tools Developer, Global Solutions, ibm.com Phone: 1-828-355-5544 E-mail:

[jQuery] Re: Star rating plugin problems

2009-03-18 Thread Diego A.
This issue has been resolved. Please download the latest version of the plugin: This is an old issue which has been resolved. Please download the latest version of the plugin: http://www.fyneworks.com/jquery/star-rating/ On Jan 29, 6:44 pm, matthias.otto...@googlemail.com

[jQuery] Re: Ajax - Reload only affected record

2009-03-18 Thread Thiago Vian
On Wed, Mar 18, 2009 at 10:46 AM, Thiago Vian tvia...@gmail.com wrote: Ok. Thats is my code: / READ // $(document).ready(function(){ var $send= $(#send); var $loading = $(#loading); var $content = $(#content); function

[jQuery] Re: Develop Ajax apps 100% faster - thanks to jQuery Raxan PDI

2009-03-18 Thread Jack Killpatrick
Looks very interesting! The site says it's in alpha... is that still correct? Thanks, Jack xwisdom wrote: Hello Everyone, I've created a PHP framework that integrates well with the jQuery library. The framework is called Raxan Framework which includes a Programmable Document Interface

[jQuery] :visible change

2009-03-18 Thread s.ross
I'm stumped on a 1.3.2 change. Here is the scenario: // Node tree: // - div.groupItem // - div.itemHeader // - a.closeEl // - div.itemContent // - All the enclosed html // // When the closeEl node is clicked, act on its parent .groupItem's //

[jQuery] Drop-down menu / PHP mark-up

2009-03-18 Thread lukas
Hello! I have a list of messages which I want to sort with the help of a jquery drop-down menu. It is a template file with an underlying PHP/MySQL application. All what I would like to do is to change a variable value and refresh (or not refresh?) the same page when someone uses the drop-down

[jQuery] Re: Can't seem to figure out what is wrong.

2009-03-18 Thread RonnBlack
Wow! It is not clear at in the documentation that it keys off the name attribute and not the id attribute. To be fair, it does say it. I just wasn't what I expected and was reading the word name as a synonym for id. Thanks a ton, that clears my confusion. On Mar 17, 8:07 pm, MorningZ

[jQuery] Re: show hide random rows

2009-03-18 Thread Sean O
Scott, Nice job. I like the logic, and the fading out of unselected rows. My solution was, admittedly, a quick one. It certainly wouldn't scale past 1,000 rows or so -- especially with the majority # selected -- but if the 10/50 number is firm, seemed to work OK. --SEAN O Scott Sauyet-3

[jQuery] Re: Develop Ajax apps 100% faster - thanks to jQuery Raxan PDI

2009-03-18 Thread donb
The 960 Grid System seems a much cleaner gridding technique, although I only recently stumbled across it and haven't used it yet. http://960.gs/ On Mar 18, 1:31 pm, Jack Killpatrick j...@ihwy.com wrote: Looks very interesting! The site says it's in alpha... is that still correct? Thanks,

[jQuery] Find and replace image problem

2009-03-18 Thread Chris K
I have the image name in a variable and want to replace it but not sure how to do this. Currently I can replace the image src with: var new_src = $(this).attr(src).replace(/ship.png$/i, fileObj.name); I want to do something like this (which doesn't work): var new_src =

[jQuery] Re: Develop Ajax apps 100% faster - thanks to jQuery Raxan PDI

2009-03-18 Thread donb
Incidentally, being '100% faster' is a bit optimistic if you think about it. ;-) But Shaving 10 hrs off a 10 hr task would give me a lot more free time for other things. On Mar 18, 1:55 pm, donb falconwatc...@comcast.net wrote: The 960 Grid System seems a much cleaner gridding technique,

[jQuery] Re: Develop Ajax apps 100% faster - thanks to jQuery Raxan PDI

2009-03-18 Thread xwisdom
Hi Jack, Yes, Raxan is still in alpha stages right now but we're anticipating a beta and then a final release very soon. donb, The grid system used by Raxan is based on BluePrintCSS which include a lot more than layouts but it also possible to intergrate Raxan with the 960 grid system. All you

[jQuery] Re: Find element. How can I do this?

2009-03-18 Thread AnatolyG
I don't have context for what you're trying to do, but if you want to hide the first OL that's displayed, then: fieldset.find(ol:eq(0)) finds it to hide it. but, if you just want this to be collapsable, and when clicking on the legend, uncollapse, wouldn't this be much easier?

[jQuery] Help about how to use the jquery.kiketable.colsizable

2009-03-18 Thread ManKuZo
Hello, I'm trying to create a very simple exemple with the the jquery.kiketable.colsizable pluging. But, It's not working, can you help me with this. The part of the code is bellow : IN THE HEADER script type=text/javascript src=jquery-1.3.2.js/script script type=text/javascript

[jQuery] Re: Find and replace image problem

2009-03-18 Thread James
var new_src = $(this).attr(src).replace(imagename, fileObj.name); will store the String value of that into new_src, so you just set your image source to it. $(this).attr(src, new_src); On Mar 18, 7:56 am, Chris K floweringm...@gmail.com wrote: I have the image name in a variable and want to

[jQuery] Re: jquery website broken?

2009-03-18 Thread Cam Spiers
How does it have anything to do with the package they are using? Would be nice to see the site at least using valid markup and css. On Thu, Mar 19, 2009 at 5:22 AM, donb falconwatc...@comcast.net wrote: It's always had that problem since the new site was created. There are floats not being

[jQuery] Re: Star rating plugin problems

2009-03-18 Thread Philip Garrett
I can confirm that this has solved my problem. Thanks, Diego! - Philip On Mar 18, 1:27 pm, Diego A. diego.a...@gmail.com wrote: This issue has been resolved. Please download the latest version of the plugin: This is an old issue which has been resolved. Please download the latest version

[jQuery] Re: show hide random rows

2009-03-18 Thread Scott Sauyet
Sean O wrote: Nice job. I like the logic, and the fading out of unselected rows. My solution was, admittedly, a quick one. It certainly wouldn't scale past 1,000 rows or so -- especially with the majority # selected -- but if the 10/50 number is firm, seemed to work OK. Yours is probably

[jQuery] Re: Find element. How can I do this?

2009-03-18 Thread shapper
Hi, that is what I am trying to do but by using that plugin I can: 1. Have different CSS classes applied to collapsed and expanded fieldsets so I can get a toogle icons; 2. Control the speed of collapse (this is not very important) The problem is that the plugin, as far as I can see, gets all

[jQuery] proper syntax for a local path ../myDirectory/myFile.htm

2009-03-18 Thread rolfsf
I need to make a simple 'freestanding' prototype to be run locally. I used a simple load() to grab a div from another file: $('#ajax-panel').load(../myDirectory/myFile.htm #myDiv); but the ../ in the url chokes. How can I accomplish that for a prototype that runs locally on my machine without a

[jQuery] Re: Find and replace image problem

2009-03-18 Thread Chris K
As I said that doesn't work. On Mar 18, 11:48 am, James james.gp@gmail.com wrote: var new_src = $(this).attr(src).replace(imagename, fileObj.name); will store the String value of that into new_src, so you just set your image source to it. $(this).attr(src, new_src); On Mar 18, 7:56 

[jQuery] Re: jquery website broken?

2009-03-18 Thread Rick Faircloth
Yes, I have to say that's it's been very surprising that the site would be so badly broken in IE 7 since it was put up. I figured someone would get around to fixing the css...assuming that's what the problem is. The site looks great when it's right, but really bad when it starts flying apart.

[jQuery] Re: Find and replace image problem

2009-03-18 Thread James
Okay, how about something like: reg = new RegExp('/'+imagename+'$/', 'gi'); new_src = $(this).attr(src).replace(reg, fileObj.name); On Mar 18, 10:00 am, Chris K floweringm...@gmail.com wrote: As I said that doesn't work. On Mar 18, 11:48 am, James james.gp@gmail.com wrote: var

[jQuery] Re: Develop Ajax apps 100% faster - thanks to jQuery Raxan PDI

2009-03-18 Thread Nikola
Very interesting! On Mar 18, 2:14 pm, xwisdom xwis...@gmail.com wrote: Hi Jack, Yes, Raxan is still in alpha stages right now but we're anticipating a beta and then a final release very soon. donb, The grid system used by Raxan is based on BluePrintCSS which include a lot more than

[jQuery] Re: jquery website broken?

2009-03-18 Thread Karl Swedberg
Again, there's not a whole lot we can do if we can't replicate the problem. Here is what the page looks like in IE 7 for me: http://skitch.com/kswedberg/be1wy/ie-7 See? Looks perfectly fine. It shouldn't be surprising to see the page so badly broken if it's only broken for some IE 7 users

[jQuery] Re: proper syntax for a local path ../myDirectory/myFile.htm

2009-03-18 Thread Nikola
I do this all the time... file:///c:/myDirectory/myFile.htm #myDiv On Mar 18, 3:32 pm, rolfsf rol...@gmail.com wrote: I need to make a simple 'freestanding' prototype to be run locally. I used a simple load() to grab a div from another file: $('#ajax-panel').load(../myDirectory/myFile.htm

[jQuery] Re: Button Actions

2009-03-18 Thread MonkeyBall2010
Thanks... I have read some of the jQuery documentation but it does little to describe the underlying language. I will check out the book you mentioned this weekend. Also, I have one more minor problem with with the above code. So the callback function is working correctly with the exception of

[jQuery] Re: proper syntax for a local path ../myDirectory/myFile.htm

2009-03-18 Thread rolfsf
Thanks Nikola. Unfortunately, this prototype will be opened on various people's computers, so I can't anticipate what the directory setup will be on their machine (both mac and pc), hence my use of a path relative to my document ../myDirectory/ On Mar 18, 2:02 pm, Nikola nik.cod...@gmail.com

[jQuery] Re: Call for contributors: A simple, fast and flexible grid/spreadsheet component.

2009-03-18 Thread Tin
Updated the last example (http://slickgrid.googlecode.com/svn/trunk/ example4-model.html) with column sorting (click on column headers). Some grid code refactoring plus multiple bug fixes and performance enhancements (try the slider!).

[jQuery] Re: jquery website broken?

2009-03-18 Thread Mauricio (Maujor) Samy Silva
...if it's only broken for some IE 7 users and not for others. And I am one of the others users, since the site looks perfectly fine on my Brazilian-Portuguese version of IE7. Maurício -Mensagem Original- De: Karl Swedberg Para: jquery-en@googlegroups.com Enviada em:

[jQuery] Re: Button Actions

2009-03-18 Thread brian
The function you pass to ajaxSubmit() is run when the AJAX call returns. So, it's well after the user hits the submit button. You should instead pass an options object with the following: beforeSubmit: your block UI handler success: your success handler On Wed, Mar 18, 2009 at 5:05 PM,

[jQuery] Re: jquery website broken?

2009-03-18 Thread Rick Faircloth
Well, it does look fine now.(just a couple of very minor issues, relatively speaking). Has someone done some tweaking lately? I haven't look at the site in maybe a week or two, and I may not have even noticed it was displaying correctly. Even with it having problems, I could get two what I

[jQuery] border-radius plugin for IE

2009-03-18 Thread weepy
This plugin adds support to IE for -moz-border-radius using VML http://gist.github.com/77516 weepy

[jQuery] Re: jquery website broken?

2009-03-18 Thread David Meiser
When I was developing our company's website, I had a coworker who kept complaining about how terrible it looked. He complained that half the images were missing, half the text was unstyled, blah blah blah. I asked him what browser he was using: Firefox 3.0.1. I was using 3.0.1 as my primary

[jQuery] Re: jquery website broken?

2009-03-18 Thread Paul Woolcock
Works for me too, Vista Ultimate + IE7. On Wed, Mar 18, 2009 at 9:21 AM, MorningZ morni...@gmail.com wrote: What do you see as broken? the page looks and operates fine for me in IE7 (Windows Server 2008 and IE7) On Mar 18, 9:11 am, iain.wa...@googlemail.com iain.wa...@googlemail.com

[jQuery] Problems whith the variables for a click function

2009-03-18 Thread Patrik
Hi! I try to make a script to change the prize between with tax and without but I cant get it to work whats wrong? var sant = 'no'; var pris = $('#productPrices').html(); $('#tax a').click(function(){ if(sant == 'no'){ var pris2 = pris.replace(/[^0-9.,]+/g, '').replace(/[,]+/g,

[jQuery] jquery web site performance quite slow on Plugins screens

2009-03-18 Thread mark.schulthe...@gmail.com
I have been accessing the web site quite a bit the last few days, the performance seems QUITE slow, and I keep getting messages saying A script on this page is causing Internet Explorer to run slowly. If it continues to run your computer may become unresponsive. Do you want to abort the script?

[jQuery] jQuery Cycle Form Submit and Next Issue

2009-03-18 Thread jenz
I am trying to get the jQuery Cycle plugin to cycle through slides that contain images with a form for rating the images. Ideally I would like the form to submit and then go to the next slide that contains the image and the rating form. What I cannot seem to figure out is how to have it cycle

[jQuery] namespaces XML parsing

2009-03-18 Thread david.garc...@barcelonamedia.org
I have had alook into jQuery mailinglist and I have googled and I have seen that there are problems witj jQuery parsing XML (an CSS I've seen) namespaces. I have tried and for example, in FF I need to look for ns\\:tag to find a tag, but for example if a look for an attribute I have to do this

[jQuery] Select class=class1 class2 using jQuery

2009-03-18 Thread bill123
I need to select an element like this: div class=class_1 class_a/div and I've found that both of the following work: $(.class_a).filter(.class_1).css(background-color, red); $(.class_a.class_1).css(background-color, red); The first one makes sense and is documented on the

[jQuery] How do I subtract 64 pixels from the value of a div's height?

2009-03-18 Thread Jeremy Coulson
Here is my code: $(document).ready(function () { var contentDivHeight = $('#contentDiv').css('height'); // pseudo-code: var calculatedHeight = $(#clickMe).click(function(){ $(#leftNavBox-contentPages).animate({height: calculatedHeight}, fast);

[jQuery] Sortable problems

2009-03-18 Thread err_ok
I am having some problems with the sortable plugin, most annoyingly in firefox instead of drag and drop functionality it seems to be click once then click again to drop.. but it doesn't seem to work at consistently, this problem isn't apparent in other demo's I have tried to I am assuming it is a

[jQuery] [Treeview] Persistent location with pages with a query string

2009-03-18 Thread FormMailer
Hi, I have several php pages in my menu and the menu works fine. The persistent location function works well, but some of these pages can have a query string (eg. http://mydomain.com/page.php?sortby=name). My problem is that Treeview doesn't recognize that the above is the same page as

[jQuery] Do you need authorization for SVN import???

2009-03-18 Thread J.V.
I am using Eclipse SVN subclipse plugin. I can browse all code on: http://jqueryjs.googlecode.com/svn but when I need to import it locally it asks me for credentials: I tried to leave it blank or use guest, but it throws the error: - import -m D:/SANDBOX/zxy

[jQuery] insertAfter loses script tags

2009-03-18 Thread Bryan Larsen
Hello, If I clone some html that includes a script tag, the script gets clone. However, if I then do an insertAfter() with that clone, the script tag gets lost. Example (using jquery-1.3.2): div id=clone_me script ({option_a: 17}); /script spanHello/span /div button

[jQuery] Re: Can a dialog not show an alert message?

2009-03-18 Thread arno.esterhuizen
Hi, delphilynx Could you post some example code, or point us to a working example? It's a lot easier than us trying to reinvent the code you already wrote. Cheers Arno On Mar 18, 3:38 pm, delphilynx delphil...@gmail.com wrote: Anyone any comment about this issue? Thanks in advance!

[jQuery] Superfish doesn't degrade in IE6

2009-03-18 Thread sanna...@gmail.com
Hi, I tested your Superfish menu in FF 3 and IE6 for the PC. In FF it degrades fine, still showing the dropdowns on hover of their parent links, but in IE6, the menus don't show. I turned off the Javascript by going to Tools Internet Options Security Custom Level, then under Scripting I

[jQuery] Superfish

2009-03-18 Thread ag
Hi, I would the Superfish menu nav-bar style to highlight the current page and if current page is on second level then it should show that level and not cloase it. THANKS :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

  1   2   >