[jQuery] Re: cross subdomain post

2008-03-28 Thread Giovanni Battista Lenoci
techguy_75 ha scritto: I want to submit a form from a page on a.mydomain.com to another page on b.mydomain.com without reloading my original page Both the pages are on the same domain but within different subdomains. If I use .ajax() , type=POST , it works fine on IE , but fails on Firefox

[jQuery] Re: Menu animations problem

2008-03-28 Thread yabado
Is there a easy way to convert this back to the horizontal version? On Feb 22, 12:54 pm, Stoyan [EMAIL PROTECTED] wrote: Hi Dan, you're right. This appears to be a stop() aftereffect. Although a strange one, or at least - undocumented. removing the queue() din't fix the problem,

[jQuery] Tablesorter IE7 Problem

2008-03-28 Thread gr00vy0ne
I'm having a weird problem where Tablesorter does not sort properly in IE7. It works perfectly fine in Firefox 2.0.0.x and Safari. The one tricky thing in my structure is that I don't have text in my td cell. Instead, I have input buttons with values which go directly in each cell. Here's my

[jQuery] Re: Anyone willing to take a look and see why this is happening?

2008-03-28 Thread ripple
Works just fine in FF. What browser(s) are you having problems with? Rick Faircloth [EMAIL PROTECTED] wrote: Hi, all... Got some strange sliding going on. Here's the link: http://c21ar.wsm-dev.com/cfm/our-agents.cfm Click on the Click here to view or hide agent's biography

[jQuery] Register click event on dynamically generated a anchor tag

2008-03-28 Thread [EMAIL PROTECTED]
Hi All, Is there any way to bind events to dynamic html content. e.g I have a div tag and button div id=outerdiv style=z-index:1;/div button id=btnClick/button when the page loads. On click of button a registered event gets fired creating a anchor tag a in the div tag

[jQuery] Re: async validation

2008-03-28 Thread Brian J. Cardiff
my particular needs where described in this conversationhttp://groups.google.com/group/jquery-en/browse_thread/thread/66c2fe75d621145e/8b11af887b5f2dc7?lnk=gstq=validate#8b11af887b5f2dc7 . But in a more general way, validation could be done in background/async without disturbing each keypress of

[jQuery] Re: Loading a form via ajax load and then submitting with ajax form helper not working.

2008-03-28 Thread delay
I made a slight error in my previous solution. on my add a comment function apparently I thought I didn't need the livequery plugin, but I was wrong.So you need to load the livequery plugin for jquery and then add this jQuery.livequery.run(); towards the end of the add_comment function.

[jQuery] Re: Calling a jQuery function from within an ajax-loaded div

2008-03-28 Thread gf8si
You need to set the dataType option to script according to the docs... http://docs.jquery.com/Ajax/jQuery.ajax See the docs for the dataType options and the first example.

[jQuery] Re: Loading a form via ajax load and then submitting with ajax form helper not working.

2008-03-28 Thread delay
SOLUTION... Ok FINALLY figured this out... I am posting my solution here since I have not seen it successfully posted anywhere else in my 2 days of trying to figure this thing out. Quite surprisingly it has a very simple solution. Initially I was trying to set the form submission using

[jQuery] jsonp problems

2008-03-28 Thread slava
Hello, I am having problems using jquery's cross domain json function. I send a request like this: var data = { 'data': '10' }; $j.ajax({ dataType: 'jsonp', data: data, url: 'http://another-domain/json-echo.php?jsoncallback=?',

[jQuery] version problem in tutorial Rate me?

2008-03-28 Thread mick
Hi all I've a version related problem or so it seems... I tried the Rate me tutorial, and it works fine in firefox and opera, but not in msie (7). when i try the online example it's works all right, but that's jquery version 1.1.2, while the current version is 1.2.3. The rating is entered in the

[jQuery] Re: clueTip click and drag?

2008-03-28 Thread az
Hi Karl, Thanks for the quick reply and for pointing me in such a fruitful direction. Based on UI Dialog, here's what I did: 1. I included ui.mouse.js and ui.draggable.js 2. I added a 'draggable' option to clueTip. 3. Immediately after opts.onShow($cluetip, $cluetipInner); [not sure if this

[jQuery] [validate] Ability to add rules via multiple validate() or some custom addRule() method

2008-03-28 Thread Bernard
Hi, I have the following problem. My form is built dynamically on the server side with the use of components. What I would like do is to give components the ability to specify validation rules for the fields they render and service. So if eg. component renders description field it should be able

[jQuery] TableSorter + TableEditor

2008-03-28 Thread Quinode
Is it my setup or did the new releases of Tablesorter broke definitely the compatibility with TableEditor ? I would surely donate to an update project, i'm not able to do this

[jQuery] Re: cross subdomain post

2008-03-28 Thread slava
You can use jquery to send your data to another domain with jsonp. more details here http://docs.jquery.com/Ajax/jQuery.getJSON On 27 мар, 18:52, techguy_75 [EMAIL PROTECTED] wrote: I want to submit a form from a page on a.mydomain.com to another page on b.mydomain.com without reloading my

[jQuery] JQuery TableSorter pager Plugin problem

2008-03-28 Thread Paul
I've recently installed the TableSorter widget for jquery. It all worked fine, so I tried to go one step further, by installing the pager plugin for TableSorter. The problem I have is that the div called 'pager' appears on top of my table (at the bottom), instead of under the table, where I

[jQuery] Re: Using JQuery Effects in Parent Window from iFrame?

2008-03-28 Thread Jiming
I tried the method, it works with $(#myid, parent.document.body); Thanks for this tip! Jiming On Mar 8, 4:03 am, tlphipps [EMAIL PROTECTED] wrote: I beat my head against this wall for quite some time. Try this: $(#myid, top.document); the top.document tells the selector to target the

[jQuery] Re: Caching issues jqModal??

2008-03-28 Thread Kenny1980
Thanks Shelane! That did the trick!! Though its still a workaround. What i am trying to do is one of the most basic features (master-detail) in the web. Why does this behaviour happen? Your solution is great, but isn´t there a more clean/default way to do it? But for now I'm happy it finally

[jQuery] Re: Effect: fadeOut fadeIn / opacity modifications don't work in my app

2008-03-28 Thread [EMAIL PROTECTED]
I have the same problem in all browsers. I position an element absolute and I apply a fadeIn-command to it: $(#silhouetten).css({position: 'absolute', left:leftPos + 'px', top:topPos + 'px', marginLeft:0}).fadeIn(slow); Nothing happens. fadeOut works finy actually. Also slideUp(slow) and

[jQuery] Re: Problem with jquery.validate.js

2008-03-28 Thread Paul Collins
Thanks again Jorn, you've been a big help... If anyone can help me, I'd appreciate it, I just need to ask two more questions. My test page is here: http://paulcollinslondon.com/contactTest.php I'd just like to know: - How can I actually remove HTML and replace it with the JQuery code, instead

[jQuery] Re: Anyone willing to take a look and see why this is happening?

2008-03-28 Thread Rick Faircloth
I just checked it out in IE6 and it's working fine there, too. The problem is with IE7. Thanks for the feedback. Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ripple Sent: Thursday, March 27, 2008 10:58 PM To: jquery-en@googlegroups.com Subject:

[jQuery] Looking New jQuery Logo

2008-03-28 Thread Jake McGraw
I remember seeing a streamlined, grey on grey logo, I think John R. used in a presentation. Anyone have a high def version of this? - jake

[jQuery] Re: Calling all jQ CF users...

2008-03-28 Thread Rick Faircloth
Thanks for the reply, Jack. Got it all worked out! :o) Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jack Killpatrick Sent: Friday, March 28, 2008 1:04 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Calling all jQ CF users... I know this

[jQuery] Re: Problem fiding a certain text inside a table

2008-03-28 Thread Feed
Thank you for the answer, motob... I don't really know how to use regular expressions but I'm gonna find out right now. On Mar 26, 5:40 pm, motob [EMAIL PROTECTED] wrote: You could try using regular expressions on the text inside of each TD. Something like this:

[jQuery] Re: async validation

2008-03-28 Thread MorningZ
That more detailed reply makes much more sense If i was doing something like this, i'd have a little dictionary going on like var Validations = {}; Validations.Name = false; Validations.UserName = false; Validations.Email= false; Validations.SomeOtherField = false; and figure out at what point

[jQuery] Plugin pattern

2008-03-28 Thread alexanmtz
Hi everyone, Im working in a big project of ajax and I would like to use a plugin pattern thats not working in pratice... All javascript in the project I would like to transform in a jQuery plugin. But to achieve this I need to separate in categories in libraries for this site Im working So, I

[jQuery] Strange bold look after a show in IE6

2008-03-28 Thread Olivier Percebois-Garve
Hi all, I'm using animate({opacity: 1}); It produces a strange effect on IE6 where the text appears sort of bold (or sort of duplicated) and a little dirty. With show() I see this effect during the transition, but when it is finished it looks ok. With animate({opacity: 1}); it remains dirty after

[jQuery] Re: JQuery TableSorter pager Plugin problem

2008-03-28 Thread Dan G. Switzer, II
Paul, I've recently installed the TableSorter widget for jquery. It all worked fine, so I tried to go one step further, by installing the pager plugin for TableSorter. The problem I have is that the div called 'pager' appears on top of my table (at the bottom), instead of under the table, where

[jQuery] Re: Strange bold look after a show in IE6

2008-03-28 Thread Snef
Try to use a background Olivier Percebois-Garve wrote: Hi all, I'm using animate({opacity: 1}); It produces a strange effect on IE6 where the text appears sort of bold (or sort of duplicated) and a little dirty. With show() I see this effect during the transition, but when it is finished

[jQuery] Re: clueTip click and drag?

2008-03-28 Thread Karl Swedberg
that's really cool. thanks for sharing your success! If you're adding those 2 lines right after the opts.onShow... you might be able to simply use the onShow option instead. It's there as an extension point, so this is just the sort of thing that onShow was intended for. btw, just to

[jQuery] Re: Brain fade...how do you destroy a div?

2008-03-28 Thread Tamm Sjödin
Sounds like an odd way to do it, just do $('#div').remove(); works with any DOM selection and it's chainable $('span').fadeOut().remove(); Live long and prosper, Tamm Sjödin On Mar 27, 2008, at 6:22 PM, Gwyn Morfey wrote: mydiv.parentNode.removeChild(mydiv) works

[jQuery] Re: Strange bold look after a show in IE6

2008-03-28 Thread Tamm Sjödin
just as a tip, a blank.gif usually works as well as any background in this fix (1x1 pixels filled with nothing for any beginners ^^) Live long and prosper, Tamm Sjödin On Mar 28, 2008, at 4:21 PM, Snef wrote: Try to use a background Olivier Percebois-Garve wrote: Hi all, I'm using

[jQuery] Re: Brain fade...how do you destroy a div?

2008-03-28 Thread Dan G. Switzer, II
Sounds like an odd way to do it, just do $('#div').remove(); works with any DOM selection and it's chainable $('span').fadeOut().remove(); You'd really need to do: $('span').fadeOut(function (){ $(this).remove() }); To make sure you don't remove the element until after

[jQuery] Re: [validate] need help with addMethod

2008-03-28 Thread Priest, James (NIH/NIEHS) [C]
It could be related to a different issue that I solved recently. Could you give the latest revision a try? http://dev.jquery.com/view/trunk/plugins/validate/ I grabbed the latest version and still no luck... A few dumb questions: Where do I place the addMethod: script

[jQuery] Re: Problem with jquery.validate.js

2008-03-28 Thread Paul Collins
Hi all, I've managed to replace the submit button with the following code: a class=replace sendButton_replace id=sendButton_replace href=em/emSend/a All I would like to know now is, how can I create the link for a HREF to submit the form? The catch is, I would like it to work with the ajax

[jQuery] Re: Selecting Children Of $(this)

2008-03-28 Thread studiobl
Sam, thank you. If my head was going to hurt today like it did yesterday, it was not going to be pleasant. Thanks again! On Mar 28, 5:59 am, Sam Collett [EMAIL PROTECTED] wrote: studiobl wrote: I'm working on a wireframe for an ecommerce site. I need to simulate some shopping cart

[jQuery] Re: JQuery TableSorter pager Plugin problem

2008-03-28 Thread Quinode
I cannot help you, just wanted to add that i try also to use the pager plugin, and it doesn't want to stay on the same place in the page : at every reload it goes up or down my table. I tried to fix this with CSS, but it does not solve the problem, random positions still occur.

[jQuery] how remove the attributes added by jquery : jQuery1206707292281

2008-03-28 Thread domi01
Hello, After several calls to jquery, some attributes are added to my html. For instance, before the jquery calls the html is : H2Header 1/H2 after the calls a new attributed is added : H2 jQuery1206707292281=17Header 1/H2 I need to remove this attribute in order to compare html

[jQuery] Re: ASP.NET GridView: losing tablesorter on postback

2008-03-28 Thread wyldemann
Did you ever find out the solution to this issue. I'm running into the same problem. anyhelp would be appreciated. Thanks, Rob On Mar 5, 12:44 pm, orip [EMAIL PROTECTED] wrote: (I apologize for the ASP.NET WebForms terminology) I'm using ASP.NET's GridView to generate a table, and the

[jQuery] jquery click(function) and animate() function cross broweser.

2008-03-28 Thread r1talin
Hi there guys, it seems muy site is not working on any IE version and on firefox it does. http://85.17.142.65/~astrazeneca/proceshtml/astra2.html thanks for your help

[jQuery] Re: async validation

2008-03-28 Thread Brian J. Cardiff
that's an approach, yes. but also on submit you should ensure validations match actual values. So maybe store also last value validated, and there a cron could be implemented pretty easily. On Fri, Mar 28, 2008 at 11:22 AM, MorningZ [EMAIL PROTECTED] wrote: That more detailed reply makes much

[jQuery] Internet Explorer DOM elements visible on hide()

2008-03-28 Thread Ryan W.
I'm seeing some inconsistent results when using hide() in (document).ready(function() when using IE. My goal is to try to hide the other list items in my unordered list and only display one of them when the page loads. I've posted my code below. Works great in firefox! Any ideas on how to get

[jQuery] Accessing the DOM from an XHR Request

2008-03-28 Thread FuzzyLogik
I'm sure a lot of us have run into this issue, but searching - I couldn't find anything about it. The problem is that when you do an Ajax request, the result is simply a string, not a document, thus you cannot access the dom, and you cannot modify it other than by using string-parsing methods.

[jQuery] Re: Problem with jquery.validate.js

2008-03-28 Thread Paul Collins
Hi all, Sorry to keep pestering, maybe I can make my request simpler so someone can help. I am using the Validator plugin, I would like to replace the submit button with an image using JQuery. The only problem is when I want to submit the form using a HREF, I need to somehow submit to the

[jQuery] cluetips - dynamic data filtering

2008-03-28 Thread SterlingK
First off, the hard work on cluetips. I'm a big fan and for a nub like me, it's been remarkably easy to integrate and customize for my sites. What I've been trying to do is have one html page that includes all the ajax content in various divs (essentially like xml), like such: div

[jQuery] bind() and thousands of td elements - inline or extrnal?

2008-03-28 Thread Leeoniya
i need to bind a click function to several thousand table cells. would making an external function be better than specifying an anonymous one inline?...i'm afraid that with the inline version it would make as many function instances as there are table cells...correct me if i'm wrong. thanks,

[jQuery] Re: Slow performance in IE7

2008-03-28 Thread Sand Dragon
Karl, That was awesome. It still seems a little slow when applying the styles but definitely a good 80-90% performance increase overall and more than enough to bring the page back to usability for the regular users. Thanks so much for your timely response and assistance, it is much appreciated

[jQuery] Validator | does not submit ajax function in Firefox

2008-03-28 Thread AlexGrande.com
In IE it works fine but in FF I have to click again to make it go. Here is the code: ajax function- function ajaxForm() { $(#researchCenterForm).submit(function() { $.ajax({ data:$(#researchCenterForm).serialize(), url:

[jQuery] Re: slideing pics

2008-03-28 Thread zok
Thanks, thats amazing! On 27 Mrz., 17:43, Benjamin Sterling [EMAIL PROTECTED] wrote: http://sorgalla.com/jcarousel/ On Thu, Mar 27, 2008 at 12:15 PM, zok [EMAIL PROTECTED] wrote: no thats not really what i'm looking for I want something like on the amazon.de site (under the headline

[jQuery] Re: Star Rating v2 and Half-Star (NEED FEEDBACK)

2008-03-28 Thread AsymF
Schweet. :) On Mar 20, 3:23 pm, Diego A. [EMAIL PROTECTED] wrote: For reference: The issue was relative positioning in IE. I worked around it with a negative margin. On Mar 20, 6:29 pm, Diego A. [EMAIL PROTECTED] wrote: I had tried that but it didn't work reliably in IE. It was a CSS

[jQuery] Flash file redraw cutting through JS pop up window

2008-03-28 Thread Lewis
Hi i have a problem where im calling a JS pop-up overlay (is a custom script not adapted from the various lightbox plugins around ) but when the overlay is over the page - the redraw sections of the flash banners are cutting through the js window showing the banners animating content. is this a

[jQuery] Re: events on embedded SVG

2008-03-28 Thread foonuk
Hi, check out http://marvin.elte.hu/balu/content/jquery-svg and the demo at http://marvin.elte.hu/drawing/ireland Seems to work there. On Mar 23, 7:02 pm, zipman [EMAIL PROTECTED] wrote: Hello, I am having an html page and I embed an svg file through. object id=map data=/Demo/map.svg

[jQuery] Superfish IE network issues

2008-03-28 Thread [EMAIL PROTECTED]
First off, I aplogize in advance that I can't link to the site where I'm having issues - it is a government intranet site. I will do my best to show all elements of the issue here. I'm using the superfish menu to show a dropdown - everything works fine in my LAN testing, but when I move things

[jQuery] jqmodal and scrolling

2008-03-28 Thread Thomas Burns
Hi, Is there a way to add scroll bars to a jqmodal dialog? -- Tom Burns

[jQuery] Re: Register click event on dynamically generated a anchor tag

2008-03-28 Thread Drake Aedus
Try this: $(document).ready(function(){ $(#btn).click(function () { $(#outerdiv).html('a href=www.yahoo.comclick me/a'); $(a).click(function(){ alert('in here'); return false; }); });

[jQuery] jQuery - GET results

2008-03-28 Thread vj
I am wondering if anyone here can help me with after retrieving my results via ajax using jQuery how to print them in say a DIV tag and print them all out, I have this so far: $(document).ready(function(){ $.ajax({ type: GET, url: letters.php,

[jQuery] Re: Caching issues jqModal??

2008-03-28 Thread Shelane Enos
I don't like having to do work arounds either when it's really a bug with the plugin. I tried contacting the developer directly, but never got a response. On 3/28/08 3:01 AM, Kenny1980 [EMAIL PROTECTED] wrote: Thanks Shelane! That did the trick!! Though its still a workaround. What i

[jQuery] Re: jQuery - GET results

2008-03-28 Thread Hodge, Steven
Try $(document).ready(function(){ $.ajax({ type: GET, url: letters.php, dataType: html, error: function(){ alert('Error loading XML document'); }, success: function(data){

[jQuery] Re: how remove the attributes added by jquery : jQuery1206707292281

2008-03-28 Thread Benjamin Sterling
Domi, I think the .removeData() method will work for you: http://docs.jquery.com/Release:jQuery_1.2.3 On Fri, Mar 28, 2008 at 8:36 AM, domi01 [EMAIL PROTECTED] wrote: Hello, After several calls to jquery, some attributes are added to my html. For instance, before the jquery calls the html

[jQuery] Re: Flash file redraw cutting through JS pop up window

2008-03-28 Thread Karl Swedberg
Hi Lewis, It could be a z-index issue, but you probably have to also set wmode to transparent for the flash object. If you're using swfObject, you can just use: so.addParam(wmode, transparent); for embed, you add the attribute: wmode=transparent for object, you do param name=wmode

[jQuery] Re: how remove the attributes added by jquery : jQuery1206707292281

2008-03-28 Thread Jeffrey Kretz
I ended up having to remove these by regular expression. Does anyone know of a better solution? JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of domi01 Sent: Friday, March 28, 2008 5:36 AM To: jQuery (English) Subject: [jQuery] how remove

[jQuery] ajaxQueue get params?

2008-03-28 Thread Rafael Santos
Can I send parameters using ajaxQueue ? If so, how do I do? Thanks -- Rafael Santos Sá :: webdeveloper www.rafael-santos.com

[jQuery] (Bump) Why is this slide so jittery?

2008-03-28 Thread Rick Faircloth
Anyone? Hi, all... Thought I had this solved, but would anyone care to take a look at this page: http://c21ar.wsm-dev.com/cfm/our-agents.cfm And click on the Click here to view or hide agent's biography link? FF2 doesn't have the jitters. The top agent's bio slides in smoothly. Any

[jQuery] Re: Flash file redraw cutting through JS pop up window

2008-03-28 Thread Alexandre Plennevaux
good point Karl, it's typically the wmode that has to be set to transparent. Be aware that it will make your flash file more resource-intensive on low spec computers. but if it's just for running ads, it shouldn't be a problem. On Fri, Mar 28, 2008 at 7:43 PM, Karl Swedberg [EMAIL PROTECTED]

[jQuery] Re: (Bump) Why is this slide so jittery?

2008-03-28 Thread Rick Faircloth
I'm glad I didn't bet against your odds! By putting a min-height on the div that surrounds the photo, the content to the right of the photo, and the bio, the slide seems to be happy. It's got a little jerk in IE6, but I'm not that concerned about IE6 and it's not terrible. Thanks, Andy! Rick

[jQuery] Re: (Bump) Why is this slide so jittery?

2008-03-28 Thread Karl Swedberg
Hey Rick, You probably already know this, but IE6 treats height as min-height. So if you create an ie6-only stylesheet and then link to it inside a conditional comment, it might help with your IE6 jitter !--[if lte IE 6] link rel=stylesheet href=ie6.css type=text/css / ![endif]--

[jQuery] Re: Strange bold look after a show in IE6

2008-03-28 Thread rorschak
This normally only affects IE6 when using an LCD monitor. It has to due with the font-smoothing settings on your monitor. LCDs use Cleartype by default (I believe), which when using an opacity on your show effect produces that fuzzy look. If you turn off Cleartype on your monitor this should

[jQuery] Syntax Error

2008-03-28 Thread Andreas de Reggi
Hy! This is the code: $(a.fdisplay).mousemove(function(e) { var cssObj = { left: e.pageX, top: e.pageY-190, } $(div.fbaloon).css(cssObj); }); Opera gives me a syntax error: $(div.fbaloon).css(cssObj); ^ I'm trying to make a div folow my pointer on moving it

[jQuery] Re: Tablesorter IE7 Problem

2008-03-28 Thread gr00vy0ne
Ok, I solved my problem with a little hack. I simply added a hidden span/span with the description in the cell and changed the sort to simple and then it sorts just fine. It's a little extra markup but it works. -v On Mar 28, 12:53 am, gr00vy0ne [EMAIL PROTECTED] wrote: I'm having a weird

[jQuery] Re: flexigrid plugin - help for server side script

2008-03-28 Thread Paulo
Hi, This is the developer of the Flexigrid, still a little busy on a project, but I updated the site with a sample php code. Hope that helps. License: its free to use for commercial or personal. On Mar 24, 8:13 am, Web Specialist [EMAIL PROTECTED] wrote:

[jQuery] Re: Re[jQuery] gister click event on dynamically generated a anchor tag

2008-03-28 Thread rorschak
you are correct as to why the new element doesn't work. Try creating the DOM element and binding a click event to it. Then placing where you need to. Example: var yLink = $('lt;alt;/a').attr('href', 'www.yahoo.com').html('click me').bind('click', clickFunction); $(#btn).click(function ()

[jQuery] jTagging plugin is cool but so sloooow!!

2008-03-28 Thread pytrade
I'm using the plugin jtagging from http://www.alcoholwang.cn/jquery/jTagging.htm I love except it is painfully slow. I looked at the code and it has a lot of nested loops. I'm sure things could be done a lot more efficiently, just don't know where to start. Any suggestions on how I can speed

[jQuery] Only first cluetip on a page works

2008-03-28 Thread ooper
I'm using cluetip to show glossary definitions on a page that has an article on it. I can only get the first cluetip to work correctly. Not sure what I am doing wrong. Here is my script: script type=text/javascript $(document).ready(function() { $('#glossary').cluetip({ splitTitle: '|',

[jQuery] Jeditable - Variables unknow

2008-03-28 Thread Valentino
Hi .. i'm a newbie on javascript world and newbie of jquery but it looks like funny an speedy.. i've a problem and i'm looking around to fix it i'm coding a questionnaire in php , and it works as well, but i would give the possibility to edit an already answered quest using jeditable.js plugin,

[jQuery] Re: jQuery - GET results

2008-03-28 Thread [EMAIL PROTECTED]
Alternatively you can use. $.ajax({ url: letters.php, dataType: html, type: GET, error: function(){ alert('Error loading XML document'); }, success: function(data){ $('#my_div').append(data); } }); On Mar 28, 6:21 pm, Hodge, Steven [EMAIL PROTECTED]

[jQuery] Re: superfish z-index with multiple menus (FF, IE, Safari)

2008-03-28 Thread pedalpete
Hey Joel, I finally got this fixed in IE, and I think the solution might be a good addition to your css for the next fix. It seems to work seemlessly in IE and FF, and Safari. All i did was add z-index: 1; to the css element .nav li:hover, .nav li.sfHover... [code] .nav li:hover, .nav

[jQuery] Expander and ClueTip plugins: work together?

2008-03-28 Thread BillSaysThis
I'm having a bit of trouble with these two great plugins and wonder if they just don't want to work together. Separately I don't have any problems and Firebug reports no trouble on my test page. However, with both enabled, Expander works, somewhat, and ClueTip not at all. By somewhat I mean that

[jQuery] Re: how remove the attributes added by jquery : jQuery1206707292281

2008-03-28 Thread domi01
The .removeData(elem) works if you have the HTML element with the jQueryxxx attribute. In my case I don't know those elements . I could make a loop on all the elements and calls the function in order to remove those tags. This process won't be efficient. In my case, the problem occurs

[jQuery] Re: ajaxContent v2.1 bug with jquery 1.2.3

2008-03-28 Thread Trend-King
Still the bug left and no reply from the author. can somebody help me please On 15 Mrz., 18:17, Trend-King [EMAIL PROTECTED] wrote: hi there. there is a little bug in the script when you use it with jquery 1.2.3 in theie6there is an fault that tells missing argument. can anybody please fix

[jQuery] Re: Superfish IE hovers z-index

2008-03-28 Thread pedalpete
I FINALLY figured this out after playing with it for FAR too long. Hopefully this helps somebody else. if you are using superfish, the culprit is the following css [code] .nav li:hover, .nav li.sfHover, .nav a:focus, .nav a:hover, .nav a:active { background:#CFDEFF; } [/code] adding

[jQuery] Re: Calling a jQuery function from within an ajax-loaded div

2008-03-28 Thread echobase
I think I may be getting closer and maybe getScript() is the answer. But I'm still not getting a some things Where and how would I use the getScript() function? I've looked for relevant examples but I can't find any that remotely fit my situation. If I have a page with this ajax function

[jQuery] Re: Only first cluetip on a page works

2008-03-28 Thread Karl Swedberg
Hi Brian, Yes, an ID absolutely must be unique for a given document if you want any DOM operations to run predictably. Might I suggest using a class name instead? Instead of this ... $('#glossary').cluetip({ try this ... $('a.glossary').cluetip({ And instead of this ... a

[jQuery] Re: Strange bold look after a show in IE6

2008-03-28 Thread Karl Swedberg
On Mar 28, 2008, at 2:41 PM, rorschak wrote: This normally only affects IE6 when using an LCD monitor. It has to due with the font-smoothing settings on your monitor. LCDs use Cleartype by default (I believe), which when using an opacity on your show effect produces that fuzzy

[jQuery] Re: Syntax Error

2008-03-28 Thread Karl Swedberg
Hi Andreas, There are two problems here: a superfluous comma and a missing semicolon. $(a.fdisplay).mousemove(function(e) { var cssObj = { left: e.pageX, top: e.pageY-190 // -- removed comma }; // -- added semicolon $(div.fbaloon).css(cssObj); }); --Karl

[jQuery] Firebug-1.1.0b12 with jQuery-1.2.3 inserted edition 1.0

2008-03-28 Thread Kinpoo Guo
Get help, type help in Firebug's Console. help Firebug-1.1.0b12 with jQuery-1.2.3 inserted edition 1.0 $ = jQuery = $jQuery if $ and jQuery are covered, you can use $jQuery $(*).a() display elements as array, not display a jQuery object

[jQuery] Re: Firebug-1.1.0b12 with jQuery-1.2.3 inserted edition 1.0

2008-03-28 Thread Kinpoo Guo
Sorry, the adress is http://navit.cn/upload/Firebug-1.1.0b12%20jQuery-1.2.3.xpi

[jQuery] Re: (Bump) Why is this slide so jittery?

2008-03-28 Thread Rick Faircloth
Thanks, Karl. I've got an IE6-specific stylesheet, I'll just need to add the appropriate CSS. Thanks for the tip! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Friday, March 28, 2008 5:25 PM To:

[jQuery] Re: how remove the attributes added by jquery : jQuery1206707292281

2008-03-28 Thread Karl Rudd
One of the core team might be able to tell you why the attributes are added for IE, it's probably something to do with some fix for a bug/feature of IE. What are you trying do when you compare the HTML? If it's just a small block of code (say contained in a div with id=block) you could do the