[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");

[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 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 ta

[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(); });

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. Do

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

2010-01-11 Thread MorningZ
yes, change the 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 set

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

2010-01-11 Thread MorningZ
yes, change the 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 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. Do yo

[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
Are you looking to make an AJAX request to load the tab? i don't think you are considering your markup... change Related Articles Files Links to Related Articles Files L

[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 Š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
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
Have you considered giving us the link to the live site?

[jQuery] Re: Problem with jQuery and AJAX

2009-12-23 Thread Scott Sauyet
On Dec 23, 9:00 am, Muaz 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 look at question 2.1 of t

[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." wrote: > Hi Evan: > > Make sure that you include the path to the jquery.validate.js > correctly.  Or try it by including it di

[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. http://dev.jquery.com/view/trunk/ plugins/validate/jquery.validate.js"> Regards, Nat On Jul 9, 2:38 pm, Ivan Augusto wrote: > Hello... this is my

[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 befor

[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 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. In Firefox

[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 tryin

[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 so

[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 Slidesho

[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: > > http://dl.getdropbox.com/u/21

[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 t

[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: http://dl.getdropbox.com/u/21984/menu_test_

[jQuery] Re: Problem with Jquery tabs

2008-12-02 Thread MorningZ
Initialize the content tabs as hidden using class="ui-tabs-hide" on the tags Like: Pane1 Pane2 Pane3 Pane 1 Contents Pane 2 Contents Pane 3 Contents

[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 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 alert

[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 Loa

[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 L

[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. T

[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 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. >

[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-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 wrote

[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-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 ht

[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 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 alr

[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 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 y

[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 d

[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 tim

[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-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 trippin

[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 "busine

[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 con

[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? O

[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

[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 th

[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-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 jQu

[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 thinki

[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-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

[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 www.english

[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]> wro

[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 bo

[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,

[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 wi

[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 in

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

2007-07-17 Thread Brandon Aaron
Could you still send me an example of the issue you are having? -- Brandon Aaron On 7/17/07, Mark <[EMAIL PROTECTED]> wrote: I've downloaded the latest version of dimensions and still having the same problem (anyway it is working with my "combined position fix" using position and offset in MS

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

2007-07-17 Thread Mark
I've downloaded the latest version of dimensions and still having the same problem (anyway it is working with my "combined position fix" using position and offset in MSIE). On 16 jul, 01:28, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > You can grab the latest from SVN from google code > here:htt

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

2007-07-15 Thread Brandon Aaron
You can grab the latest from SVN from google code here: http://jqueryjs.googlecode.com/svn/trunk/plugins/dimensions/ -- Brandon Aaron On 7/15/07, Mark <[EMAIL PROTECTED]> wrote: Hi Brandon, I am using the rc1 version of the dimensions plugin, with jQuery 1.1.2. I have made several modificati

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

2007-07-15 Thread Mark
Hi Brandon, I am using the rc1 version of the dimensions plugin, with jQuery 1.1.2. I have made several modifications to the autocomplete component so I cant just upgrade, I will have to check the improvments and try to apply them. I dont have the sources here, but tomorrow I will try to post you

[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 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 w

[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 prob

[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: http:

[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... > >

[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 S

[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 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 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 e

[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 cle

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

2007-06-06 Thread Michael Geary
Roger on the login problem. One thing you could possibly do if we don't get it figured out: Do a View Source of the page with the problem, save that to a static .html file, strip it of any proprietary information, and then post the resulting page where we can look at it. In the meantime, one thou

[jQuery] Re: Problem with JQuery and existing JS code.

2007-06-06 Thread Mike Alsup
Angelo, If you could post a link to a page that exhibits the problem I'm sure we can help you out. In general, there's really nothing special you need to do. Since it works in FF, my guess is that there is just a script error occurring in IE that is preventing further scripts from running. Mi

[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 I include the jqeuery js script and also the other scripts used to do the other js actiivities which in this case is drag

[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 exis

[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 c