[jQuery] Re: Safari 2 Mac - loads of problems!

2008-07-11 Thread yabdab
Mac users usually stay on top of things better than PC users. Most of them have likely upgraded to Safari 3. On Jul 10, 6:34 pm, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Safari 2 has some serious problems with it's Javascript interpreter. Any page that has a heavy amount of Javascript

[jQuery] Trouble using .Click() inside of an object definition

2008-07-11 Thread ScottyUCSD
I'm in the middle of building a form wizard and I've run into a problem with one of the object's methods. The object sjm_wizard is supposed to allow you to traverse a set of divs one div at a time. The problem is that I can't figure out how to call the object's methods within .click(). The

[jQuery] Re: [ Add Onclick on loaded image ]

2008-07-11 Thread Topayung, Amdys Max
Thanks Kevin ! Regards, amdys On Fri, Jul 11, 2008 at 5:54 AM, Kevin Pepperman [EMAIL PROTECTED] wrote: since the image is loaded dynamicly,you should use the jquery.listen plugin. It will allow you to 'listen' for the element and attach a click event to the newly created image.

[jQuery] about for loops

2008-07-11 Thread Javier Martínez
This is a question about the jquery code. I see many times this type of statement *for (var i = 0, j = array.length; i j; i++)* and want to know why is better than* for (var i = 0; j array.length; i++) *Because the first statement has more characters and jquery code tends to see shorter, I

[jQuery] Re: [ Add Onclick on loaded image ]

2008-07-11 Thread Topayung, Amdys Max
Hi Kevin do you have any clue how can i add some progress image on top of the real image while there downloading ? Thanks, Regards Amdys On Fri, Jul 11, 2008 at 4:32 PM, Topayung, Amdys Max [EMAIL PROTECTED] wrote: Thanks Kevin ! Regards, amdys On Fri, Jul 11, 2008 at 5:54 AM, Kevin

[jQuery] Re: Safari 2 Mac - loads of problems!

2008-07-11 Thread herrflick
Ok thanks Dan, I'll keep hunting see what I can come up with. On 10 Jul, 23:34, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Safari 2 has some serious problems with it's Javascript interpreter. Any page that has a heavy amount of Javascript will fail. I know the jQuery team has to run the

[jQuery] Editable SELECT element plug-in?

2008-07-11 Thread Mark Livingstone
Would anyone happen to know of some in-place editable plug-in for SELECT elements similar to http://code.google.com/p/jquery-jec/ ? Jquery-jec doesn't only allows me to add a new item into the select box, but not to edit fixed options. Thanks.

[jQuery] Re: HTML Parsing issue

2008-07-11 Thread shruthi
Hi, Thanks for your reply! I notice your request has a closing tag after a self-closing tag. ... /ns1:echoInteger is closing the tag ns1:echoInteger ns1:arg0 is a self closing tag. The soap request is generated by the axis client and I don't really have any control on how it gets generated.

[jQuery] Plugin: How to access the ID in a Non-Objekt?

2008-07-11 Thread Crazymind
Example: I call a function in a Plugin like this: $(#someElement).jActual(update); in the Plugin i do the following: this.html(hello); Thats no Problem, but how can I get the id (in this example: someElement) of the Element if this not exist? if(this.length = 0){ //how to give me the id

[jQuery] Re: slideDown hidden portion/bump

2008-07-11 Thread noon
I wrapped it in a div and slid the div. Still same problem, visible again at http://nunyez.googlepages.com/slidedowntest On Jul 8, 6:37 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Try wrapping the form in a div and sliding that down. That should work. --Karl Karl

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Richard W
Awesome Joel! Love the new features. I got one quick suggestion, if you add -moz-opacity:.999; to your body style then my screen won't experience display issues with fadein/ fadeout. (FF2 on Mac) On Jul 10, 4:44 pm, Joel Birch [EMAIL PROTECTED] wrote: Okay, so the drop shadows are not applied

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Joel Birch
Thanks for the nod Richard - it means a great deal to me that you like it. Thanks for the suggestion for the text-mode fix for FF2, also. I've moved to FF3 Mac and it seems my brain is keen to forget that annoyance. I've found an acceptable workaround to get the drop shadows working for IE7 too,

[jQuery] Re: jQuery animate performance help...please!!!

2008-07-11 Thread Dan G. Switzer II
Tom, i'm relatively new to jQuery and the world of javascript but since i've started using it it's opened up a huge amount of possibilities that i'm know everyone has encountered!! anyway, i was hoping that someone with a bit more experience and knowledge could help me out and possibly take a

[jQuery] trying to build function to ajax submit form and ajax load

2008-07-11 Thread Anthony Leboeuf(Worcester Wide Web)
Hi there, I am trying to build a function getcart(); that submits the form when clicked through ajax. The form is sent in GET format to cart.inc.php and turns the GET into SESSIONS and does math. The problem Im having is the variables are never making it to cart.inc.php. I think it has to do

[jQuery] simple IE$ src img updating

2008-07-11 Thread pere roca
hi, a very simple question related to ** IE$ behaviour. I have a very very simple jquery function to change the src of images; after applying it, while in Firefox works and shows the img, IE$ gets the new src (using firebug) value but doesnt update the image... some reason? thanks! Pere --

[jQuery] Re: completely resetForm

2008-07-11 Thread caseyw
Hi Jörn, I have basically this, and still a no go. var nameForThisValidator = $(#formName).validate(); $(#closeLogin).click(function (event) { nameForThisValidator.resetForm(); nameForThisValidator.submitted = {}; document.forms['formName'].reset(); $(#loginLink).show();

[jQuery] jquery and comet long polling problem with IE

2008-07-11 Thread cambazz
hello, I wrote a comet servlet, and this is how I get the data into jquery: function pS() { $.ajax({ url:'tS', type: 'GET', timeout: 10, complete: function(xhr, status) { alert(status); if(status==='success') {

[jQuery] Re: simple IE$ src img updating

2008-07-11 Thread Liam Byrne
Check that the ID name of the image object are the same, and that there are no duplicate names on the page. L pere roca wrote: hi, a very simple question related to ** IE$ behaviour. I have a very very simple jquery function to change the src of images; after applying it, while in Firefox

[jQuery] Re: slideDown hidden portion/bump

2008-07-11 Thread Liam Byrne
IE 7 shows scrollbarsmaybe the animation isn't making it big enough to display it properly ? Make it bigger and see what happens. L noon wrote: I wrapped it in a div and slid the div. Still same problem, visible again at http://nunyez.googlepages.com/slidedowntest On Jul 8, 6:37 pm,

[jQuery] Re: slideDown hidden portion/bump

2008-07-11 Thread noon
I figured it out. The culprit is because I am setting the focus of the username input box. For whatever reason, when I remove this it is slid correctly. On Jul 11, 8:57 am, Liam Byrne [EMAIL PROTECTED] wrote: IE 7 shows scrollbarsmaybe the animation isn't making it big enough to display

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Rick Faircloth
Hi, Joel... congrats on the new version. I've been working with the 1.4.1 version of Superfish for awhile on a new site and I have put 24-bit png's as the background images for the menu items (not the main items, just in the dropdowns) all was working fine for months. Then all of a sudden, in

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Joel Birch
Okay, the IE7 fix has been released - Superfish is now v1.4.6 (couldn't be bothered saying 1.4.5.1). Richard, I found that adding -moz-opacity:.999 to the body of the documentation CSS (to fix FF2 Mac) caused the fade-ins not to work in FF3 Mac! They just popped straight to full opacity after

[jQuery] Some If/Then help

2008-07-11 Thread brendan
Hey all, I'm using Seamus Leahy's AddAClassNameAtRandomToAnElement.js (http:// moronicbajebus.com/2006/07/30/add-a-class-randomly-from-a-set/) to add a random class to a div, and then trying to insert an image based on the random class name. So if I have div id=main class=aa I'd like to say

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Joel Birch
Hi Rick, thanks for the congrats. I checked your site in IE7 and this is what is happening: the pngs are solid black until the animation has fully faded in, then they switch to being transparent. This is the same problem I had with the drop shadows, although I thought it only occurred when the

[jQuery] Re: about for loops

2008-07-11 Thread Ariel Flesler
Because the length attribute of arrays is dynamic, and is evaluated each time you use it. That's a perfomance optimization. Also.. if you add items to the array inside the 'for', you'll go into an infinite loop. -- Ariel Flesler http://flesler.blogspot.com On 11 jul, 08:06, Javier Martínez

[jQuery] Re: Some If/Then help

2008-07-11 Thread noon
Don't understand when this could occur to make any sense for images being inserted like this without an example, but at any rate... You'll have to think about when and how this is triggered in order for these if statements to be executed because as said, i don't understand switch

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Richard W
Hi Joel Indeed this is quite a frustrating FF bug! Your fix has not solved the solution for FF2 Mac, I have to assume because you're checking for browser verion 1.9 .. ? On Jul 11, 2:16 pm, Joel Birch [EMAIL PROTECTED] wrote: Okay, the IE7 fix has been released - Superfish is now v1.4.6

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Joel Birch
I was quite confused by why Firefox3 identifies itself as 1.9 via $.browser.version. Any idea what I should be checking for? Cheers Joel Birch.

[jQuery] Re: Some If/Then help

2008-07-11 Thread brendan
On Jul 11, 9:51 am, noon [EMAIL PROTECTED] wrote: Don't understand when this could occur to make any sense for images being inserted like this without an example, but at any rate.. noon, thanks for your help, I'll give it a try. I should have been a little more specific sorry. It's for

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Joel Birch
Just found this explanation (last couple of comments on the page): http://allinthehead.com/retro/328/when-bugs-collide-fixing-text-dimming-in-firefox-2 Have altered the fix - hopefully it works now. Please scream in anguish if not. Cheers Joel Birch.

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Richard W
$.browser.version returns as string This should work: if ($.browser.mozilla parseFloat($.browser.version) 1.9) $('body').css('-moz-opacity',.999); On Jul 11, 3:17 pm, Joel Birch [EMAIL PROTECTED] wrote: I was quite confused by why Firefox3 identifies itself as 1.9 via

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Richard W
That's done it :) On Jul 11, 3:23 pm, Joel Birch [EMAIL PROTECTED] wrote: Just found this explanation (last couple of comments on the page):http://allinthehead.com/retro/328/when-bugs-collide-fixing-text-dimmi... Have altered the fix - hopefully it works now. Please scream in anguish if

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Joel Birch
Thanks so much for the help Richard! Joel.

[jQuery] How to access xml attribute values with Jquery?? ...that have a namespace. Ex = name:funny

2008-07-11 Thread Ed
I'm using this tutorial for xml consumption with jquery: http://www.webmonkey.com/tutorial/Easy_XML_Consumption_using_jQuery The tutorial includes this code example to find the value of the post attribute in the node name: studentPost = $this.find(name).attr(post); But... It doesn't work if

[jQuery] Re: trying to build function to ajax submit form and ajax load

2008-07-11 Thread Mike Alsup
 $.ajax({url: cart.inc.php, data: $(this.elements).serialize(), What is this in the line above?

[jQuery] UI/Effects/Transfer

2008-07-11 Thread mjama
hey guys , just quick question , I am trying to transfer an image not an outline .. is that even possible ?

[jQuery] Re: internship with a programmer - wanna work for free to learn

2008-07-11 Thread Jonathan Sharp
Hi Vik, On Thu, Jul 10, 2008 at 4:41 PM, joomlafreak [EMAIL PROTECTED] wrote: ... My impression so far had been that they really are not counted much compared to your experience. It is generally mentioned by people that increasing competition has led to companies using the credentials like

[jQuery] [autocomplete] - Problem with display after upgrading from 1.0 to 1.0.2

2008-07-11 Thread rsmolkin
Hi All, I just updated the version I was using 1.0 of the jquery autocomplete to version 1.0.2. And right away one thing does not work the same for me. The display used to be a nice list with no scroll bars and would say More at the bottom with arrows. Now it comes up with both a horizontal

[jQuery] UI/Effects/Transfer

2008-07-11 Thread mjama
okai sorry if this is a duplicate but my machine acting weird... so my question is UI/Effects/Transfer plugin only transfers the outlines , is there a way to transfer an image ? even if it is using a different plugin ?

[jQuery] Re: This chain works in Firefox but not in IE6?

2008-07-11 Thread paceman
Thank-you On Jul 10, 9:20 pm, Richard D. Worth [EMAIL PROTECTED] wrote: Each .append() expects a complete (and best if valid) element. So where you've got .append(span) near the beginning of your chain, and .append(/span) near the end, you need .append(span/span) or .append(span/) just near

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Rick Faircloth
Thanks for the tips, Joel. When I first implemented SuperFish on this site, it was my first use and I wasn't sure what bgiframe.js was for exactly, so I included it just to be safe. (I just didn't take the time to read...) Now that I know what it's for, I realize I don't need it to overcome

[jQuery] Extra AJAX calls being made

2008-07-11 Thread Dustin
I'm working on an app that uses Jquery and the BlockUI plugin. An odd problem I'm having is that there are extra ajax calls being made. For every Ajax call I make, and the number of calls made increments. In other words, the initial ajax call is made by clicking a button in a message I display

[jQuery] How to create a dynamic parameter in getJSON url?

2008-07-11 Thread K Bouton
How do I add a dynamic parameter in getJSON url? [code] function onSelectChange(){ var whatChecked = $(input:checkbox:checked).val(); $.getJSON(select.php, {whatChecked:somevalue}, function(json) { ...stuff to do } [/code] I want the url that getJSON uses to be dynamic and look

[jQuery] Traversing XML via jQuery

2008-07-11 Thread neosz
Hi folks, I'm a jQuery newbie and I'm trying to traverse a XML given by a PHP script to get information for organizing them and displaying them on my page. Here's a kind of my XML: ?xml version=1.0 ?bookisbn0156001314/isbnisbn015603297X/ isbnisbn0847829863/isbnisbn0847826465/isbnisbn0151013519/

[jQuery] Need Help Filtering Content

2008-07-11 Thread Willie
I am building a test site with jquery. The site lists links from several rss feeds. On the right side of the page there is a sources legend. I would like to be able to click a source and show only links from that source while the others hide. Then when I click a different source, those links

[jQuery] Re: Traversing XML via jQuery

2008-07-11 Thread Sam Sherlock
not tried this, I might have an obvious error, but this is what i would try var $suggest =$(#suggest); var $testo = $(#testo); // perform function on each isbn from xml source $(isbn, xml).each(function (i, n) { // append the text to the

[jQuery] Re: Extra AJAX calls being made

2008-07-11 Thread Josh Nathanson
Usually this indicates that somehow, you are rebinding the event handler to the button on each ajax call. Each time you do a binding, it is additive -- there is nothing to check and see if the event handler is already bound. Check your logic and make sure you are only binding the event

[jQuery] Button Click

2008-07-11 Thread shapper
Hello, I have a button which redirects to a page: button class=Cancel type=button onclick=location.href='/Tag/ List?page=1' id=CancelCancel/button Should I remove the onclick from the button and do this with JQuery? And how can I do that using JQuery? Thanks, Miguel

[jQuery] Re: Need Help Filtering Content

2008-07-11 Thread noon
First of all, you should be assigning your content links (the ones on the left) classes and not IDs. Not only is it bad practice, but jQuery will stop after it hits the first one. Second of all, $(a).click(function () { var filter = $(this).attr(id);

[jQuery] Re: Button Click

2008-07-11 Thread noon
Should you? Well if thats the only javascript on the page there isn't much point in including a library for something like that. However you could do it by saying: // jQuery's document ready $(function() { // grab the button and assign event $(#Cancel).click(function() {

[jQuery] Re: Some If/Then help

2008-07-11 Thread Richard W
Perhaps sommin like this: (untested) var clients = [ 'nike' : 'swoosh.jpg', 'addidas' : '3stripes.jpg', 'reebok' : 'rbk.jpg', 'default' : 'default.jpg' ]; var class = $(#main).attr(class); typeof clients[class] != undefined ? insertImg(clients[class]) : insertImage(clients['default']);

[jQuery] Re: Button Click

2008-07-11 Thread Andy Matthews
!-- the jQuery -- script type=text/javascript !-- $(document).ready(function(){ $('#myButton').click(function(){ location.href='/Tag/ List?page=1'; }); }); //-- /script !-- the button -- input type=button id=myButton

[jQuery] Re: Button Click

2008-07-11 Thread shapper
No no, I already use Jquery for many things like: form validation, autocomplete, etc ... In this page I use only that and the only Javascript I have in my HTML markup is this one in this button ... this is why i am asking this. Thanks, Miguel On Jul 11, 5:50 pm, noon [EMAIL PROTECTED] wrote:

[jQuery] AutoComplete and JSon not working as expected. Please, help me out.

2008-07-11 Thread shapper
Hello, I am using JQuery AutoComplete with JSon. I created a function on my server code which return the data. However, when I start writing J in my Input I get the following: [{TagID:883b197e-0cb3-4528-8403-0877d742bf47,Name:John}, {TagID:017b253e-596b-4328-85f5-fd97a783759c,Name:Jane}] How

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-11 Thread MorningZ
That strange format *is* JSON !

[jQuery] Re: How to create a dynamic parameter in getJSON url?

2008-07-11 Thread Leandro Vieira Pinho
Hi, Try something like it: .. var urlJSON = select.php?param=value; $.getJSON(urlJSON, function(json) { ...stuff to do } On Jul 11, 12:34 pm, K Bouton [EMAIL PROTECTED] wrote: How do I add a dynamic parameter in getJSON url? [code] function onSelectChange(){ var whatChecked

[jQuery] jqmodal and jquery ajax request on the same page

2008-07-11 Thread Kassan
I have one jqmodal window with ajax source (and ajaxText 'waiting' message), and one div with form- with ajax onSubmit. When I click on a link to show my modal window, my dynamic div is also updated with its own ajax-'waiting' message. How can I make this two independent? Below is my script for

[jQuery] dynamically change size of select box

2008-07-11 Thread K Bouton
How do I dynamically change size of select box depending on the number of responses retreived froma getJSON [code] $.getJSON(select.php, {project:% }, function(json){ var dropsize=json.length +2; var options = ; options += 'option value=%All Projects/option';

[jQuery] Re: Trouble using .Click() inside of an object definition

2008-07-11 Thread ScottyUCSD
Solved my own problem. using var a = this in the object declaration was all I needed. I tried it before but apparently screwed something up. On Jul 10, 11:44 pm, ScottyUCSD [EMAIL PROTECTED] wrote: I'm in the middle of building a form wizard and I've run into a problem with one of the

[jQuery] send dynamic variable via ajax post in flexigrid

2008-07-11 Thread ktpmm5
I have a php file that gets a variable from another file: [code] $gameno = $_GET['gameno']; [/code] At this point, the $gameno is correct, because I write the value to my error log. The problem comes in where I need to use this variable to display data in a grid. I want to send the

[jQuery] jqmodal and jquery ajax request on the same page problem

2008-07-11 Thread Kassan
Hi, I use jqmodal window with with ajax content + ajaxText for 'waiting' html, and a dynamic div with form submit: function finishAjax(id, response) { $('#'+id).html(unescape(response)); $('#'+id).fadeIn(); } function SendcForm(){ $('#contactform').ajaxStart(function() {

[jQuery] Superfish Question

2008-07-11 Thread abba bryant
I was just wondering if there was any sort of workaround for the tiny 1px twitch that happens on the submenu items once the animation is complete. Thanks -- View this message in context: http://www.nabble.com/Superfish-Question-tp18409078s27240p18409078.html Sent from the jQuery General

[jQuery] jQuery works in one place but not another

2008-07-11 Thread Josh
I'm observing some strange behavior with jQuery 1.2.6 today. I've got this in my head script type=text/javascript src=/scripts/jquery.js/script script type=text/javascript $(document).ready(function () { alert('this works'); }); function showFilterCalendar() {

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-11 Thread tlphipps
You need to use the formatResult option (I think that's the option name). It will allow you to format the data for display. On Jul 11, 12:08 pm, shapper [EMAIL PROTECTED] wrote: Hello, I am using JQuery AutoComplete with JSon. I created a function on my server code which return the data.

[jQuery] Re: Extra AJAX calls being made

2008-07-11 Thread Dustin
Yep, you were right! I was rebinding the events every time the message box popped up. Here is a question though...with the message box (which contains the buttons I'm binding events to), I am essentially just displaying and hiding it...not creating and deleting it. If I were to completely remove

[jQuery] Re: How to create a dynamic parameter in getJSON url?

2008-07-11 Thread K Bouton
That did it - Thanks! On Jul 11, 6:19 pm, Leandro Vieira Pinho [EMAIL PROTECTED] wrote: Hi, Try something like it: .. var urlJSON = select.php?param=value; $.getJSON(urlJSON, function(json) { ...stuff to do } On Jul 11, 12:34 pm, K Bouton [EMAIL PROTECTED] wrote: How

[jQuery] Re: Extra AJAX calls being made

2008-07-11 Thread Dustin
Yep, you were right! I was rebinding the events every time the message box popped up. Here is a question though...with the message box (which contains the buttons I'm binding events to), I am essentially just displaying and hiding it...not creating and deleting it. If I were to completely remove

[jQuery] Using jQuery Form Plugin - submitting special characters

2008-07-11 Thread hubbs
I am trying to send special characters through my form, using the form plugin, but they keep on getting converted to strange characters. e.g. Smart quotes from MS Word, etc. So, what I am wondering is, what do I need to do to fix this? I thought that submitting the form into an iframe with the

[jQuery] Re: Extra AJAX calls being made

2008-07-11 Thread Mike Alsup
Here is a question though...with the message box (which contains the buttons I'm binding events to), I am essentially just displaying and hiding it...not creating and deleting it. If I were to completely remove it from the page would I need to rebind the events? You would need to bind them

[jQuery] Re: Extra AJAX calls being made

2008-07-11 Thread Josh Nathanson
Yep, if you remove the elements, the event bindings are gone as well. -- Josh - Original Message - From: Dustin [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Friday, July 11, 2008 11:04 AM Subject: [jQuery] Re: Extra AJAX calls being made Yep, you were

[jQuery] Re: jQuery works in one place but not another

2008-07-11 Thread Josh
I just tried this change: script type=text/javascript src=/scripts/jquery.js/script script type=text/javascript $(document).ready(function () { alert('this works'); $('h2').fadeOut('slow'); }); /script Same problem: $ is not a function. The alert works, but the fadeOut() doesn't. Why

[jQuery] Re: jQuery works in one place but not another

2008-07-11 Thread Josh
Ok, I think I found a way around the problem. Apparently one of the other scripts my institution uses was overwriting $ or something... Including the jQuery library at the end of the HTML file (while not proper) seems to get around it. On Jul 11, 11:38 am, Josh [EMAIL PROTECTED] wrote: I'm

[jQuery] jQuery Cycle Plugin: Showing next Slide when loaded

2008-07-11 Thread juro
Hi, Similar to this example http://malsup.com/jquery/cycle/add4.html I would like to know whether it is possible to only transition to the next slide when this is loaded completely. This is useful when a large amount of images are part of the slideshow. Thank you for your comments juro

[jQuery] jQuery Cycle Plugin: 'Cover'ing random width slides from the right

2008-07-11 Thread juro
Hi, I have been trying to get a certain effect using the jQuery.cycle plugin but have falied miserably. Similar to the top example on this page: http://www.malsup.com/jquery/cycle/cover2.html I want to cover the images from right to left. The only (and substantial) difference to the example is

[jQuery] Re: tab issue with autcomplete plugin

2008-07-11 Thread kirisu
Not sure if this is the same issue, but I had a situation where I was making a textfield an autocompletion field on focus (I did this because I was programmatically generating new textboxes on focus as previous ones were filled). If I clicked on an autocomplete field and started typing, I would

[jQuery] Re: Extra AJAX calls being made

2008-07-11 Thread Dustin
Is there any kind of reasons (performance, memory, or otherwise) why I'd be better off just binding them once rather than undbinding and then redbinding the events? On Jul 11, 2:36 pm, Mike Alsup [EMAIL PROTECTED] wrote: Here is a question though...with the message box (which contains the

[jQuery] Re: jQuery works in one place but not another

2008-07-11 Thread Richard D. Worth
When you call $(document).ready, the $ is equal to jQuery, so it works. You're passing it a callback function to be executed when the DOM is ready. By that time another library has loaded and overwritten the $. For possible work-arounds see http://docs.jquery.com/Using_jQuery_with_Other_Libraries

[jQuery] Re: Extra AJAX calls being made

2008-07-11 Thread Mike Alsup
Is there any kind of reasons (performance, memory, or otherwise) why I'd be better off just binding them once rather than undbinding and then redbinding the events? Performance. If possible, it almost always better to do things once rather than over and over. The usual tradeoff is

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-11 Thread shapper
Yes, I tried the following: $(#Tags).autocomplete(/File/GetTags, { width: 260, formatItem: function(item) { return item.Name; } }); But this is not working. Any idea? Thanks, Miguel On Jul 11, 7:03 pm, tlphipps [EMAIL PROTECTED] wrote: You need

[jQuery] jScrollPane and IE 7

2008-07-11 Thread Jarodium
Hello there everybody I'm having some strange issue using the latest version of JScrollPane with IE7. The problem is that it seems that the .holder div goes right after reinitialising the jScrollPane and the scrollbar's width is decreasing. On Firefox, the script is working fine. Here is an

[jQuery] treeview context menu

2008-07-11 Thread acoldone
Has anyone had any luck creating a context menu for the tree view? I am having the tree open up and populate a form when a node name is left clicked and I want to be able to have delete and add functions for the context menu when a node name is right clicked? I'm hoping to hook up these events

[jQuery] [autocomplete] INPUT/SELECT hybrid (show all results?)

2008-07-11 Thread nathanziarek
Eventually using the autocomplete on this project will be the fastest way to maneuver. At the beginning, however, users won't know all of the options available. What I'd like to do is offer a drop down of sorts showing all of the options available. If the user already knows the option, though, I

[jQuery] AJAX not working

2008-07-11 Thread jbhat
I am having trouble with AJAX: In document ready i have: $.post(test.php, function(data){alert('Success');}); and test'php is just ?php ?...the alert never comes up This is just a test... In addition to the callback not working, when the php file updates a mySQL database, those updates are

[jQuery] Re: AJAX not working

2008-07-11 Thread Jonathan Sharp
Hi jbhat, Can you post a URL? It's nearly impossible to debug or provide any feedback from reading the code below. Cheers, -Jonathan On Fri, Jul 11, 2008 at 2:51 PM, jbhat [EMAIL PROTECTED] wrote: I am having trouble with AJAX: In document ready i have: $.post(test.php,

[jQuery] Re: Some If/Then help

2008-07-11 Thread brendan
Thanks Richard, I couldn't get yours to work (my js knowledge is pathetically rusty) and ran out of time to tinker with it, I ended up just prepending the image to the div by class after it's randomly added: $(document).ready(function(){ $(#main.nike).prepend('img src=swoosh.jpg alt=nike /');

[jQuery] Re: Need Help Filtering Content

2008-07-11 Thread Scott Sauyet
noon wrote: First of all, you should be assigning your content links (the ones on the left) classes and not IDs. Not only is it bad practice, but jQuery will stop after it hits the first one. Another approach is to use individual ids using the feed id as the prefix, e.g. feedID5-1,

[jQuery] Re: jQuery Cycle Plugin: 'Cover'ing random width slides from the right

2008-07-11 Thread Mike Alsup
I have been trying to get a certain effect using the jQuery.cycle plugin but have falied miserably. Similar to the top example on this page: http://www.malsup.com/jquery/cycle/cover2.html I want to cover the images from right to left. The only (and substantial) difference to the example

[jQuery] Re: AJAX not working

2008-07-11 Thread jbhat
I was developing the code locally using XAMPP, and i just tried to port it to my server bttt.bidding-games.com/game.php It isn't accepting the jquery for some reason, but that's roughly what it looks like...i'll try to get it fixed shortly thanks, Jay On Jul 11, 1:14 pm, Jonathan Sharp [EMAIL

[jQuery] Re: jQuery Cycle Plugin: 'Cover'ing random width slides from the right

2008-07-11 Thread Mike Alsup
I have been trying to get a certain effect using the jQuery.cycle plugin but have falied miserably. Similar to the top example on this page: http://www.malsup.com/jquery/cycle/cover2.html I want to cover the images from right to left. The only (and substantial) difference to the

[jQuery] Re: AJAX not working

2008-07-11 Thread jbhat
Okay, i got my code up and running on http://bttt.bidding-games.com/game.php when you type something in the bid box, and hit enter, we get a post firing to setBothBids.php. However, the alert in this function's callback is not firing. Why? Thanks, Jay On Jul 11, 1:28 pm, jbhat [EMAIL

[jQuery] jquery ajax post not working

2008-07-11 Thread Tom Shafer
I am trying to use ajax post to simply send a form field to php and return it to a div Here is what I have $(document).ready(function(){ $(#addLinks).submit(function() { $.ajax({ url: 'addLinks.php', type: 'POST',

[jQuery] [jqModal r13] Closing a nested modal causes IE6 bleed-through

2008-07-11 Thread Funka!
Hello, I am encountering the following situation with jqModal r13 and elements bleeding through in IE6 after spawning and closing nested modals... I open a modal in IE6 that has a partially transparent overlay. This looks and works great! I notice that all the select elements behind the

[jQuery] Re: Some If/Then help

2008-07-11 Thread Ryura
Richard's didn't work because he formed an array instead of an object like he was planning. Replacing the [ ... ] with { ... } should've made it work. On Jul 11, 4:13 pm, brendan [EMAIL PROTECTED] wrote: Thanks Richard, I couldn't get yours to work (my js knowledge is pathetically rusty) and

[jQuery] Re: jQuery Cycle Plugin: 'Cover'ing random width slides from the right

2008-07-11 Thread juro
Hi Mike, Absolutely awesome! That is exactly what I wanted. It seems that I didn't quite understand the custom transition effects, I was trying to alter the position with $(curr).outerWidth() Now where was that Paypal button Warm regards juro On Jul 11, 11:12 pm, Mike Alsup [EMAIL

[jQuery] Re: AJAX not working

2008-07-11 Thread jbhat
Okay, i got my code up and running on http://bttt.bidding-games.com/game.php when you type something in the bid box, and hit enter, we get a post firing to setBothBids.php. However, the alert in this function's callback is not firing. Why? Thanks, Jay On Jul 11, 1:28 pm, jbhat [EMAIL

[jQuery] Re: AutoComplete and JSon not working as expected. Please, help me out.

2008-07-11 Thread shapper
I also tried the following but until now I wasn't able to make it work: $(#Tags).autocomplete(/Professor/GetTags, { autoFill: true, cacheLength: 1, multiple: true, scrollHeight: 200, selectFirst: false, width: 260,

[jQuery] Re: How to access xml attribute values with Jquery?? ...that have a namespace. Ex = name:funny

2008-07-11 Thread Ariel Flesler
I can think of 2 options: $this.find(name\\:funny).attr(post); I'm not sure that will work. The other one: this.getElementsByTagName('name:funny')[0].getAttribute('post'); A non jQuery solution. Sometimes the only solution available. -- Ariel Flesler http://flesler.blogspot.com/ On 11 jul,

[jQuery] Re: Extra AJAX calls being made

2008-07-11 Thread Ariel Flesler
Check out this link http://docs.jquery.com/FAQ#Why_do_my_events_stop_working_after_an_Ajax_request.3F -- Ariel Flesler http://flesler.blogspot.com/ On 11 jul, 16:00, Dustin [EMAIL PROTECTED] wrote: Is there any kind of reasons (performance, memory, or otherwise) why I'd be better off just

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Richard W
Glad to have helped! And thank you once again for a very sexy menu ;) BTW I had no idea about the FF3 opacity issues, that fix you use is now standard for me On Jul 11, 3:30 pm, Joel Birch [EMAIL PROTECTED] wrote: Thanks so much for the help Richard! Joel.

[jQuery] Square Brackets in Sortable Serialize

2008-07-11 Thread Alan Gutierrez
When I call $(#list).sortable(serialize) I get article[]=2article[]=1 Why the square brackets? I've not seen this sort of style of query string before. -- Alan Gutierrez | [EMAIL PROTECTED] | http://blogometer.com/ | 504 717 1428 Think New Orleans | http://thinknola.com/

  1   2   >