[jQuery] Re: Problem with jquery tabs on live site

2010-01-11 Thread Šime Vidas
Have you considered giving us the link to the live site?

[jQuery] Re: Problem with jquery tabs on live site

2010-01-11 Thread Coxy
Sorry, I wasn't sure if one was needed. Here is an example: http://krautspotter.bungert.co.uk/article/goerlitzer-park.html This loading of the whole page never happened with the static mock-up. Also jquery seems to have created it's own tabs. I never called them hrefs like #ui-tabs-22

[jQuery] Re: Problem with jquery tabs on live site

2010-01-11 Thread Šime Vidas
I'm having a hard time finding the jQuery code that gets executed when you click on a tab...

[jQuery] Re: Problem with jquery tabs on live site

2010-01-11 Thread Coxy
$(document).ready(function(){ ... // Related Tabs on single view $(#relatedTabs).tabs(); }); It's in an external js: initialise.js

[jQuery] Re: Problem with jquery tabs on live site

2010-01-11 Thread MorningZ
Are you looking to make an AJAX request to load the tab? i don't think you are considering your markup... change div id=relatedTabs class=sidebarSection p class=infoText sidebarTitlestrongRelated/strong/p ul id=relatedTabBar lia href=article/goerlitzer-

[jQuery] Re: Problem with jquery tabs on live site

2010-01-11 Thread Coxy
No I'm not, and in my static mock-up everything was ok. It does this on the live site, and I want to find out why. Do you know how to stop it?

[jQuery] Re: Problem with jquery tabs on live site

2010-01-11 Thread MorningZ
yes, change the a tags in the code above as shown... but putting a URL there you are telling the tabs plugin go get this via AJAX request On Jan 11, 11:43 am, Coxy step...@bungert.co.uk wrote: No I'm not, and in my static mock-up everything was ok. It does this on the live site, and I want to

[jQuery] Re: Problem with jquery tabs on live site

2010-01-11 Thread MorningZ
yes, change the a tags in the code above as shown... by putting a URL there you are telling the tabs plugin go get this via AJAX request See: http://jqueryui.com/demos/tabs/#ajax - Fetch external content via Ajax for the tabs by

Re: [jQuery] Re: Problem with jquery tabs on live site

2010-01-11 Thread Charlie
when you put an actual url into tabs href it treats them as ajax tabs. If you aren't using AJAX in them remove the url within the href and replace with href="" Coxy wrote: No I'm not, and in my static mock-up everything was ok. It does this on the live site, and I want to find out why.

[jQuery] Re: Problem with jquery tabs on live site

2010-01-11 Thread Coxy
In the included js (initialise.js): $(document).ready(function(){ ... // Code snipped // Related Tabs on single view $(#relatedTabs).tabs(); });

[jQuery] Re: Problem with jquery tabs on live site

2010-01-11 Thread Coxy
Thanks all, I have my problem solved. My CMS (TYPO3) was set to prefix local anchors (needed for the URL re-writing extension realurl) and this was changing the href's by adding a whole url. Since I can't turn of this function without switching of realurl I just alter the anchors before calling

[jQuery] Re: Problem with jquery tabs on live site

2010-01-11 Thread Coxy
tabLinks= $('#relatedTabBar li a'); numOfTabs = tabLinks.length; for (index = 0; index numOfTabs; index ++) { oldAnchor = $(tabLinks[index]).attr('href'); hashPos = oldAnchor.indexOf('#'); newAnchor = oldAnchor.substr(hashPos);

[jQuery] Re: Problem with jquery tabs on live site

2010-01-11 Thread MorningZ
it can be easier than that, not so many variables to worry about :) right before $(#relatedTabs).tabs(); put $(#relatedTabs ul a).attr(href, function() { if ($(this).attr(href).indexOf(#) -1) { return # + $ (this).attr(href).split(#)[1]; } else { $(this).attr(href); } }); On Jan 11,

[jQuery] Re: Problem with jQuery and AJAX

2009-12-23 Thread Scott Sauyet
On Dec 23, 9:00 am, Muaz muazahmedm...@hotmail.com wrote: login and loggedin are two div which are on same place. Both divs are recreated by AJAX but after they are recreated jQuery stops working untill i manually refresh the page (Copying my reply from another thread...) You might want to

[jQuery] Re: Problem with jQuery Validation

2009-07-10 Thread Natkeeran L.K.
Hi Evan: Make sure that you include the path to the jquery.validate.js correctly. Or try it by including it directly from the jquery library. script type=text/javascript src=http://dev.jquery.com/view/trunk/ plugins/validate/jquery.validate.js/script Regards, Nat On Jul 9, 2:38 pm, Ivan

[jQuery] Re: Problem with jQuery Validation

2009-07-10 Thread Mean Mike
also be sure you don't have two or more elements with the same id or anything like that as that will mess up the validation as well On Jul 10, 9:22 am, Natkeeran L.K. natkee...@gmail.com wrote: Hi Evan: Make sure that you include the path to the jquery.validate.js correctly.  Or try it by

[jQuery] Re: problem using jquery ui tabs and google maps

2009-07-03 Thread Charlie
http://jqueryui.com/demos/tabs/#...my_slider.2C_Google_Map.2C_sIFR_etc._not_work_when_placed_in_a_hidden_.28inactive.29_tab.3F Carlos wrote: Hi, I have a map inside a "tab", which is created using jquery ui tabs. Placing the map inside a tab causes it to center itself in the wrong point,

[jQuery] Re: Problem with jQuery in Firefox

2009-05-10 Thread MC Lueppers
Hi, I just found the main reason for the problem : event bubbling. When applying the click() function to the input field the event starts bubbling, hits the li element, fires the click() event again and so the stack in FF is filled up until the error shows. Simple check for an applied class

[jQuery] Re: Problem with jQuery in Firefox

2009-05-09 Thread MC Lueppers
Hi Matt, thanks for the response, but actually this was already clear for me ;). Most importantly I need a workaround for it. I already tried the following too: var plan_price = obj.find(input[name='plan_price']:radio); plan_price.each(function() { $(this).click();

[jQuery] Re: Problem with jQuery in Firefox

2009-05-08 Thread Matt Critchlow
obj.find(input[name='plan_price']:radio).click(); //is creating the recursive loop On May 8, 12:59 am, MC Lueppers mdob...@gmail.com wrote: Hi, I'm in a development phase of a file sharing portal and I have a problem with jQuery on the following page:http://share.home.hive-net.net/pricing.

[jQuery] Re: Problem with jQuery form pluging redirecting

2009-04-03 Thread Mike Alsup
I use the form plugin $(document).ready(function() {     var options = {         target:        '#divShow',         beforeSubmit:  showRequest,         success:       showResponse     };     $('#myForm').ajaxForm(options); }); This works, but in the form php file, I'm trying a

[jQuery] Re: Problem using jquery library in php file

2009-04-02 Thread James
Do you have all of the other required files also? Such as the jQuery library and jQuery UI library files, CSS files, etc. It would be helpful if you could provide a link to your page or some kind of demo of it not working. On Apr 2, 3:58 am, jusko jusk...@gmail.com wrote: I have a little

[jQuery] Re: Problem Using jQuery with Other Libraries

2009-01-19 Thread MorningZ
I think i dont know the proper use of it How about posting what (jQuery'd noConflict) code you have tried so far? On Jan 19, 5:30 am, DILIP KUMAR vishwakarma.dilipku...@gmail.com wrote: hi there,  i am new to Jquery, and find it very interesting i already had been implemented few of your

[jQuery] Re: Problem Using jQuery with Other Libraries

2009-01-19 Thread Liam Potter
Hi Dilip, it is advised to not use multiple frameworks, but if this is un-avoidable then you can turn on no conflict Read this http://docs.jquery.com/Using_jQuery_with_Other_Libraries DILIP KUMAR wrote: hi there, i am new to Jquery, and find it very interesting i already had been

[jQuery] Re: Problem Using jQuery with Other Libraries

2009-01-19 Thread sad1sm0
Yeah I would imagine using that many frameworks has to be tasking on your download time anyway. Why not think about converting everything to a common platform so they'll play nice. On Jan 19, 10:57 am, Liam Potter radioactiv...@gmail.com wrote: Hi Dilip, it is advised to not use multiple

[jQuery] Re: Problem with jQuery Cycle Plugin

2009-01-17 Thread Mike Alsup
I'm using the jQuery Cylce Plugin(http://malsup.com/jquery/cycle/) and I ran into some problems when I added it to some other pre-exising code I have. 1. Here is the working Slideshow -http://www.idea-palette.com/testfolder/slideshowtest.html When I add the existing working Slideshow code

[jQuery] Re: Problem with jQuery Cycle Plugin

2009-01-17 Thread zeckdude
Ofcourse. I figured it was such a simple solution. Thanks for the great code and for taking the time and effort to help us out! I need to use Firebug alot more too I see. -Chris malsup wrote: I'm using the jQuery Cylce Plugin(http://malsup.com/jquery/cycle/) and I ran into some

[jQuery] Re: Problem on jquery 1.2.6 with ie6

2008-12-17 Thread Ariel Flesler
You're probably passing an easing equation (name) that is not registered. You either find it and remove it, or add the plugin: http://gsgd.co.uk/sandbox/jquery/easing/ Cheers -- Ariel Flesler http://flesler.blogspot.com/ On Dec 16, 1:33 pm, m.ugues m.ug...@gmail.com wrote: For more detail

[jQuery] Re: Problem on jquery 1.2.6 with ie6

2008-12-16 Thread m.ugues
For more detail see this post http://codylindley.com/thickboxforum/comments.php?DiscussionID=1435page=1#Item_12 Kind regards. Max On Dec 16, 11:23 am, m.ugues m.ug...@gmail.com wrote: Hallo all. I'm using domWindow with jQuery 1.2.6.min and I have a big problem on core library. When I

[jQuery] Re: problem using jquery and prototype together

2008-12-12 Thread evan
// here i selected two same ids using jquery and prototype respectively. script type=javascript jQuery.noConflict(); // for jqury selectors use jQuery instead of '$ like jQuery(document).ready( function(){ jQuery(id).css('color:red'); ... } );' // then

[jQuery] Re: problem using jquery and prototype together

2008-12-12 Thread Amardeep
thanks .. this is very helpful indeed On Fri, Dec 12, 2008 at 2:10 PM, evan umeshpati...@gmail.com wrote: // here i selected two same ids using jquery and prototype respectively. script type=javascript jQuery.noConflict(); // for jqury selectors use jQuery instead of '$ like

[jQuery] Re: problem using jquery and prototype together

2008-12-11 Thread Karl Rudd
If you take a look at the last part of http://docs.jquery.com/Using_jQuery_with_Other_Libraries you'll see a solution. Basically wrap your jQuery code in one of these two: (function($) { /* some code that uses $ */ })(jQuery) jQuery(function($) { /* some code that uses $. run on document.ready

[jQuery] Re: Problem with Jquery tabs

2008-12-02 Thread MorningZ
Initialize the content tabs as hidden using class=ui-tabs-hide on the div tags Like: div id=TabContainer ul class=tabs li style=list-style-image: none;a href=#pane-1spanPane1/span/a/li li style=list-style-image: none;a href=#pane-2spanPane2/span/a/li

[jQuery] Re: Problem with Jquery tabs

2008-12-02 Thread Liam Potter
put style=display:none on the content divs. serpicolugnut wrote: I'm having an issue getting Jquery tabs to run correctly. I'm using the technique described at http://media.jqueryfordesigners.com/jquery-tabs-part2.mov . I've setup a test case here:

[jQuery] Re: Problem with Jquery tabs

2008-12-02 Thread Ted
That works, but this line of code - $(tabContainers).hide().filter(this.hash).show(); ...is supposed to hide all the tabs and show the first tab upon execution. The cited example at jqueryfordesigners.com doesn't require you to manually hide the divs with css, the jquery code is supposed to do

[jQuery] Re: Problem with Jquery tabs

2008-12-02 Thread serpicolugnut
Plus, it doesn't work in either IE6/IE7. :,( serpicolugnut wrote: I'm having an issue getting Jquery tabs to run correctly. I'm using the technique described at http://media.jqueryfordesigners.com/jquery-tabs-part2.mov . I've setup a test case here:

[jQuery] Re: Problem with jQuery Round Corners plug-in in IE 67

2008-11-04 Thread Omid
I`m using new version of Round Corner plug-in . Of course I`m using some other jQuery plugin in my page and I think my problem is related to other plugin too . For example I`m using Jquery Cycle Plugin in my page . On Nov 3, 10:44 pm, Mike Alsup [EMAIL PROTECTED] wrote: I used this code in my

[jQuery] Re: problem with jquery selector in IE

2008-11-03 Thread glowbal
Thanks for the quick response. Too bad the Firefox behavior isn't what is supposed to happen...

[jQuery] Re: problem with jquery selector in IE

2008-11-03 Thread ricardobeat
jQuery doesn't officialy support XML parsing, it just happens to 'happen' :) Try $(xml).contents().filter('url') instead, might work. On Nov 3, 2:56 am, glowbal [EMAIL PROTECTED] wrote: To be more explicit, here is the relevant code: function displayURL(xml) {         try {                

[jQuery] Re: Problem with jQuery Round Corners plug-in in IE 67

2008-11-03 Thread Mauricio (Maujor) Samy Silva
Check the parameters for corner() See: http://malsup.com/jquery/corner/ It seems that there isn't a sintax like that you used. Try: corner (round nnpx) Mauricio -Mensagem Original- De: Omid [EMAIL PROTECTED] Para: jQuery (English) jquery-en@googlegroups.com Enviada em:

[jQuery] Re: Problem with jQuery Round Corners plug-in in IE 67

2008-11-03 Thread Mike Alsup
I used this code in my page to gain rounded corner : script type=text/javascript   $(document).ready(function(){     $(div#right_column).each(function(){                 $(this).corner(round);         });   }); /script There is no problem in FF but I have problem with IE , please have a

[jQuery] Re: problem with jquery selector in IE

2008-11-02 Thread glowbal
To be more explicit, here is the relevant code: function displayURL(xml) { try { alert(xml); var result = $(url, xml).text(); alert(result); } catch (ex) { alert(ex); } } In the above code the

[jQuery] Re: Problem with JQuery - Ajax

2008-10-27 Thread Tallu
Java script code. $(document).ready(function(){ alert(Document is Ready); $(form#FormID).submit(function(){ alert(Form is submitted); $.post(process.php,{keyword:$(#keyword).val()},function(data) { alert(Data Loaded: +

[jQuery] Re: Problem with JQuery - Ajax

2008-10-27 Thread Mike Alsup
    $(document).ready(function(){         alert(Document is Ready);         $(form#FormID).submit(function(){                 alert(Form is submitted);                 $.post(process.php,{keyword:$(#keyword).val()},function(data) {                         alert(Data Loaded: + data);    

[jQuery] Re: Problem with JQuery - Ajax

2008-10-19 Thread Mike Alsup
I am trying to use the ajax functions of JQuery but its not working all the normal functions of jQuery are working as expected.What could i be doing wrong. Thanks!! There's no way to tell what you're doing wrong if you don't show us what you're doing. Please post an example or a link.

[jQuery] Re: Problem with JQuery Form, file upload and success option

2008-10-01 Thread kojilab
My mistake. I was doing something wrong in the back end code and since I couldn't see the response, I thought it was the success option. On Oct 1, 11:31 am, kojilab [EMAIL PROTECTED] wrote: Hi, The code in my success option does not execute when I have a simple form with a file field. When

[jQuery] Re: Problem with JQuery Form, file upload and success option

2008-10-01 Thread Steve Schnable
How can I subscribe it? Steve

[jQuery] Re: Problem with jQuery performance

2008-06-09 Thread daveJay
Thanks for the suggestions, that's very handy! =) While I think it has helped some, it hasn't made an appreciable difference on the overall performance. I don't think it's the method of dissolve that's the problem. I tried a scriptaculous fade and had the same issue. I think it's mostly the fact

[jQuery] Re: Problem with jQuery performance

2008-06-09 Thread DaveG
FF3 should be coming out soon and hopefully the adoption rate will be quick. Well, we may be seeing different problems, but I'm running FF3 on Windows, and the fade transition between large images is not particularly smooth, so not sure that's going to be the savior. ~ ~ Dave daveJay

[jQuery] Re: Problem with jQuery performance

2008-06-09 Thread DaveG
I just read another post about the cycle plugin. Maybe that will help? http://www.malsup.com/jquery/cycle/ daveJay wrote: Thanks for the suggestions, that's very handy! =) While I think it has helped some, it hasn't made an appreciable difference on the overall performance. I don't think it's

[jQuery] Re: Problem with jQuery performance

2008-06-06 Thread daveJay
Upon further investigation, it's the Mac Firefox that's giving me grief, the performance while still a tad hampered is acceptable. I guess there's not much I can do about it except hope that things will improve in the Mac FF3.

[jQuery] Re: Problem with jQuery performance

2008-06-06 Thread Dave Methvin
Upon further investigation, it's the Mac Firefox that's giving me grief, the performance while still a tad hampered is acceptable. I guess there's not much I can do about it except hope that things will improve in the Mac FF3. Possibly the unneeded fadeOut of all images, even the ones

[jQuery] Re: Problem with jQuery performance

2008-06-06 Thread DaveG
I made some minor code and css changes to your template, but still didn't manage to get a smooth fade effect, so I'm not sure the issue lies there alone. You might want to check http://brainerror.net/scripts/javascript/blendtrans/ -- there is a pretty smooth image fade effect that seems to

[jQuery] Re: Problem with jQuery performance

2008-06-06 Thread DaveG
Just found this jQ fade technique: http://jqueryfordesigners.com/image-cross-fade-transition/ DaveG wrote: I made some minor code and css changes to your template, but still didn't manage to get a smooth fade effect, so I'm not sure the issue lies there alone. You might want to check

[jQuery] Re: Problem with jQuery drag and drop

2008-01-31 Thread Richard D. Worth
There's a dedicated jQuery UI mailing list: http://groups.google.com/group/jquery-ui/ Thanks. - Richard On Jan 31, 2008 5:33 AM, Arun Kumar [EMAIL PROTECTED] wrote: I'm using jQuery's ui library (current one, using makeSortable() method) for Sorting purpose. And I'm creating some dynamic

[jQuery] Re: Problem with jQuery drag and drop

2008-01-31 Thread Arun Kumar
File is updated. There is a bug. When there are no gadgets in any column, then we can't drag them into that column even if it is sortable. Please remember that only first two columns are eligible for sorting. One more doubt is, how can I use hoverClass? Please give me a demo page link. Thank

[jQuery] Re: Problem With jquery form plugin and tinymce

2008-01-21 Thread [EMAIL PROTECTED]
Thanks for the reply Mike! Everyone else who's interested, feel free to take a look as well... I setup some test pages. http://www.jlhweb.org/mytest/index.php?fnc=test and http://www.jlhweb.org/mytest/index.php?fnc=test2 Each has a link to a business card. On the biz card you'll need to click

[jQuery] Re: Problem With jquery form plugin and tinymce

2008-01-21 Thread [EMAIL PROTECTED]
Thanks for the reply Mike! Everyone else who's interested, feel free to take a look as well... I setup some test pages. http://www.jlhweb.org/mytest/index.php?fnc=test and http://www.jlhweb.org/mytest/index.php?fnc=test2 Each has a link to a business card. On the biz card you'll need to click

[jQuery] Re: Problem With jquery form plugin and tinymce

2008-01-21 Thread [EMAIL PROTECTED]
Thanks Mike! I setup two test pages: http://www.jlhweb.org/mytest/index.php?fnc=test http://www.jlhweb.org/mytest/index.php?fnc=test2 A copy of the jQuery code is at: http://www.jlhweb.org/mytest/jquery.txt test has tinyMCE on the textarea. test2 does not. test can only be edited one time on

[jQuery] Re: Problem With jquery form plugin and tinymce

2008-01-16 Thread [EMAIL PROTECTED]
I seem to have the opposite problem. Only affects my tinymce textarea in IE. All other form elements and browsers do not show the following behavior I'll describe... My webapp basically like an address book. click a name, and then an ajax call loads some HTML about the person, called a

[jQuery] Re: Problem With jquery form plugin and tinymce

2008-01-16 Thread Mike Alsup
I seem to have the opposite problem. Only affects my tinymce textarea in IE. All other form elements and browsers do not show the following behavior I'll describe... Can you give us a link? Sounds like you've got a lot going on in that page - if I had to guess I'd say that IE is tripping

[jQuery] Re: Problem With jquery form plugin and tinymce

2008-01-13 Thread Mike Alsup
I have a form which is submitted through jquery form plugin. The form contains only one textarea which uses tinymce. The problem is that when I try to submit the form, the new content of the textarea is not sent through POST. If there is any content before that modifications, than that

[jQuery] Re: Problem with jQuery plugin: validation

2008-01-10 Thread yabado
I am seeing that a couple of the examples do not work in Safari 3 The custom rules one does nothing. The radio/checkbox one the same. They both throw 'TypeError: Undefined Value' These errors are from the js on the page, and not the js that is linked in. Any ideas? Anyone else seeing this?

[jQuery] Re: Problem with jQuery plugin: validation

2007-11-28 Thread edav
On 27 nov, 16:22, Jörn Zaefferer [EMAIL PROTECTED] wrote: edav schrieb: Hi. First of all thanks for the great work! I am using the jquery validate plugin and it works great in safari, firefox and ie7 but in ie6 it has a problem in line 1222, its the url validation regex. If I remove

[jQuery] Re: Problem with jQuery plugin: validation

2007-11-27 Thread Jörn Zaefferer
edav schrieb: Hi. First of all thanks for the great work! I am using the jquery validate plugin and it works great in safari, firefox and ie7 but in ie6 it has a problem in line 1222, its the url validation regex. If I remove the entire rule then it works in ie6. I'm using jquery 1.2.1 and

[jQuery] Re: Problem with jquery toggler conflicting with another jquery script

2007-11-25 Thread Benjamin Sterling
Rick, Looks like you can get that menu from http://youngpup.net/projects/transmenus/ On 11/24/07, Rick Faircloth [EMAIL PROTECTED] wrote: Hi, Robert (is it Robert?) (Seems a little strange to say hi to quik3r...but, whatever...) Anyway, I'm sorry I don't know enough about JS or jQuery to

[jQuery] Re: Problem with jquery toggler conflicting with another jquery script

2007-11-25 Thread Rick Faircloth
Thanks, Benjamin. Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Benjamin Sterling Sent: Sunday, November 25, 2007 2:57 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Problem with jquery toggler conflicting with another jquery script Rick, Looks

[jQuery] Re: Problem with jquery toggler conflicting with another jquery script

2007-11-24 Thread Rick Faircloth
Hi, Robert (is it Robert?) (Seems a little strange to say hi to quik3r...but, whatever...) Anyway, I'm sorry I don't know enough about JS or jQuery to answer your question (I'm new to it all, too), but I do like the transparent, drop-down menu on the Verrico Associates site. I've been thinking

[jQuery] Re: problem with jquery

2007-10-25 Thread mark
Thanks Rob. You were correct..its working fine now. On Oct 25, 12:55 am, Rob Desbois [EMAIL PROTECTED] wrote: Mark, I think you are saving the document as rich text format (RTF). Try pasting the code sample into notepad and save it from there. Once that works, make sure that in

[jQuery] Re: problem with jquery

2007-10-25 Thread mark
thanks Karl On Oct 25, 3:27 am, Karl Swedberg [EMAIL PROTECTED] wrote: Hi Mark, Make sure you return false so that the link doesn't trigger the default behavior (which is to go to the url): $(document).ready(function() { $(a).click(function() { alert(Hello world!);

[jQuery] Re: problem with jquery

2007-10-24 Thread Rob Desbois
Mark, I think you are saving the document as rich text format (RTF). Try pasting the code sample into notepad and save it from there. Once that works, make sure that in whatever editor you're using you save things as 'plain text'. Hope that helps --rob On 10/24/07, mark [EMAIL PROTECTED]

[jQuery] Re: problem with jquery

2007-10-24 Thread Karl Swedberg
Hi Mark, Make sure you return false so that the link doesn't trigger the default behavior (which is to go to the url): $(document).ready(function() { $(a).click(function() { alert(Hello world!); return false; }); }); --Karl _ Karl Swedberg

[jQuery] Re: Problem with jQuery Picture gallery

2007-10-23 Thread Benjamin Sterling
Try adding this to your styles: .stripViewer ul, .stripViewer ul li{margin:0;padding:0;} On 10/23/07, tal5 [EMAIL PROTECTED] wrote: I am new to jQuery and CSS. I have installed this jQuery script but for some reason the images in the gallery are off-set from the automatic generated border.

[jQuery] Re: Problem with jQuery + Dimension plugin + Autocomplete plugin + Float

2007-08-06 Thread Mark
Hi Brandon, I am using pixels, and in some cases % for widths. (most of them 100%) The problem not happens in Explorer 7, only in explorer 6. On 20 jul, 23:51, Brandon Aaron [EMAIL PROTECTED] wrote: Are you using units other than pixels for anything? -- Brandon Aaron On 7/20/07, Mark

[jQuery] Re: Problem with jQuery + Dimension plugin + Autocomplete plugin + Float

2007-07-20 Thread Mark
Hi Brandon, It is difficult to create an example, because it is a complex application, and the autocomplete is highly customized. And also I am going vacations right now, and I will be back in August. This is a big DIV, and inside has two DIVs one floated left, and the other floated right. And

[jQuery] Re: Problem with jQuery + Dimension plugin + Autocomplete plugin + Float

2007-07-20 Thread Brandon Aaron
Are you using units other than pixels for anything? -- Brandon Aaron On 7/20/07, Mark [EMAIL PROTECTED] wrote: Hi Brandon, It is difficult to create an example, because it is a complex application, and the autocomplete is highly customized. And also I am going vacations right now, and I

[jQuery] Re: Problem with jQuery + Dimension plugin + Autocomplete plugin + Float

2007-07-14 Thread Brandon Aaron
Hey Mark, Could you possibly post an example of the issue? I'm having trouble following what exactly is going on. Also, try grabbing the latest version of Dimensions from SVN as it has been recently updated. -- Brandon Aaron On 7/14/07, Mark [EMAIL PROTECTED] wrote: Hi! I am using jQuery

[jQuery] Re: Problem with jQuery + Dimension plugin + Autocomplete plugin + Float

2007-07-14 Thread Brandon Aaron
Actually, what version of the autocomplete plugin are you using. It looks like the latest depends on the dimensions plugin. Perhaps you should grab both the latest versions of the dimensions and the autocomplete plugins. -- Brandon Aaron On 7/14/07, Brandon Aaron [EMAIL PROTECTED] wrote: Hey

[jQuery] Re: Problem accessing jQuery Documentation website

2007-06-12 Thread Rob Desbois
I saw it too, although problem vanished after 5 minutes ish. On 6/12/07, Michael Andreas [EMAIL PROTECTED] wrote: Oh my.. http://groups.google.com/group/jquery-en/browse_thread/thread/2fb8eb9152b705ef It's happening again today (2007-06-12 09:45Z). I got the message jQuery JavaScript

[jQuery] Re: Problem accessing jQuery Documentation website

2007-06-12 Thread Michael Andreas
Ahh, yes it's working normally now. Cheers. -Michael- On Jun 12, 6:02 pm, Rob Desbois [EMAIL PROTECTED] wrote: I saw it too, although problem vanished after 5 minutes ish.

[jQuery] Re: Problem with Jquery and integrating into existing scripts.

2007-06-07 Thread Diego A.
Have you tried $.noConflict()? See: http://docs.jquery.com/Using_jQuery_with_Other_Libraries On Jun 6, 11:33 pm, Angelo Zanetti [EMAIL PROTECTED] wrote: Hi Michael. Its very difficult for me to give you a link because you have to unfortunately login to the system. Maybe I can expain clearly

[jQuery] Re: Problem with Jquery and integrating into existing scripts.

2007-06-07 Thread Scott Sauyet
Angelo Zanetti wrote: Its very difficult for me to give you a link because you have to unfortunately login to the system. Maybe I can expain clearly what the script does. [ ... ] This is unlikely to be enough information to allow the community to help. It's difficult to help without a live

[jQuery] Re: Problem with Jquery and integrating into existing scripts.

2007-06-07 Thread Angelo Zanetti
Hi Diego Yes I have tried that call and have looked at that page but it still doesnt help me. I have tried all three different ways that they suggest in that page. Please if u think its anything else. or perhaps im doing something wrong with the namespace. thanks Angelo Diego A. wrote:

[jQuery] Re: Problem with Jquery and integrating into existing scripts.

2007-06-07 Thread Angelo Zanetti
Dear Michael thanks for the reply again. I have uploaded the page here: http://www.zlogic.co.za/jQuery/jQueryProblemIE.htm The grid you see is whats meant to load, I am using a new version of JQuery. Will try your suggestion but I think the jQuery kills all the js functions in the file...

[jQuery] Re: Problem with Jquery and integrating into existing scripts.

2007-06-07 Thread Angelo Zanetti
Hi Scott. I agree and understand that you need something to look at, I have save the page source and uploaded it here: http://www.zlogic.co.za/jQuery/jQueryProblemIE.htm If you have any suggestions based on viewing the code/source I'd be very grateful. Thanks kind regards Angelo Scott

[jQuery] Re: Problem with Jquery and integrating into existing scripts.

2007-06-07 Thread Dan G. Switzer, II
Angelo, thanks for the reply again. I have uploaded the page here: http://www.zlogic.co.za/jQuery/jQueryProblemIE.htm The grid you see is whats meant to load, I am using a new version of JQuery. Will try your suggestion but I think the jQuery kills all the js functions in the file... But if

[jQuery] Re: Problem with Jquery and integrating into existing scripts.

2007-06-07 Thread Scott Sauyet
Angelo Zanetti wrote: I agree and understand that you need something to look at, I have save the page source and uploaded it here: http://www.zlogic.co.za/jQuery/jQueryProblemIE.htm I get the same behavior in IE and FF. One issue is that you're pointing to JQuery on a local domain:

[jQuery] [SOLVED] Re: [jQuery] Re: Problem with Jquery and integrating into existing scripts.

2007-06-07 Thread Angelo Zanetti
Dear all. I have solved it and its thanks to Michael, I know that the HTML is not clean and perfect thats another story but the thing that fixed it is: $(loadTree); thanks again hope this will help other ppl with the same problem. Thanks Angelo Michael Geary wrote: Roger on the login

[jQuery] Re: Problem with Jquery and integrating into existing scripts.

2007-06-06 Thread Michael Geary
Angelo, can you post a link to a test page? Without seeing the problem in action, we would all be just guessing. From: Angelo Zanetti I have been having trouble with integrating JS into existing website. The particular files that we are trying to include the Jquery into the JS that exists

[jQuery] Re: Problem with Jquery and integrating into existing scripts.

2007-06-06 Thread Angelo Zanetti
Hi Michael. Its very difficult for me to give you a link because you have to unfortunately login to the system. Maybe I can expain clearly what the script does. In the head I include the jqeuery js script and also the other scripts used to do the other js actiivities which in this case is

[jQuery] Re: Problem with jquery form plugin and file upload

2007-04-17 Thread Mike Alsup
No, there is nothing special you need to do for file uploads. Just make sure you're using a recent version of the plugin that supports file uploads (.95 or later, I think). Mike On 4/17/07, sublimenal [EMAIL PROTECTED] wrote: Hello, I am having a problem with jquery form plugin when it