[jQuery] Re: jQuery and IE 8

2010-01-07 Thread Scott Sauyet
I don't get any error. Have you fixed it since posting yesterday? -- Scott

[jQuery] Re: Jquery Corner IE issues [Solution]

2009-11-11 Thread TimP
Hi, just thought i'd share this as i spent a while trying to work it out, i'm using the corner plugin to create rounded corners on a dropdown menu, but ran into a problem where in all versions of IE it was showing the body background color on the corners of the menu when the menu was displayed

[jQuery] Re: Jquery Corner IE issues

2009-10-21 Thread theosoft
I'm having the same issue. On another note, I'm curious as to a better way to use this on images. Currently I'm having to put it as the background image on an element, but this is no good for resizing. Thanks. Chris Coppenbarger On Oct 14, 8:43 am, Paul paulverh...@gmail.com wrote: Hi there,

[jQuery] Re: Jquery Corner IE issues [Solution]

2009-10-21 Thread theosoft
What the corners do is get the background-color of the parent element. If there is none set on the parent element, it keeps going up until it finds a background-color. You can do one of two things. Set a background-color on the parent element or in the javascript, it allows you to change the

[jQuery] Re: Jquery Corner IE issues [Solution]

2009-10-21 Thread Dave Methvin
Right, you can't corner an img element because the img element can't have children. Put the img in a div and round that. Better yet, create the img src with rounded transparent corners!

[jQuery] Re: Jquery Corner IE issues [Solution]

2009-10-21 Thread Mike Alsup
Image demo: http://jquery.malsup.com/corner/image.html On Oct 21, 12:34 pm, Dave Methvin dave.meth...@gmail.com wrote: Right, you can't corner an img element because the img element can't have children. Put the img in a div and round that. Better yet, create the img src with rounded

[jQuery] Re: jQuery cycle IE issue

2009-09-16 Thread kcory
Hi Mike, Thanks for taking the time to respond but it still doesn't work. I've tried #slideshow1 and #slideshow1 img but still no improvement. I'm still getting the DOM queuing slideshow error in my console but now the height and width do have values. Any more suggestions? Thanks in advance

[jQuery] Re: jQuery cycle IE issue

2009-09-15 Thread Mike Alsup
Try adding style rules for the anchors - they are the actual slides in your case: #slideshow1 a { height: 463px; width: 841px; display: block; } Mike On Sep 15, 5:00 pm, kcory design...@katherinecory.com wrote: Hi, I've tried implementing jQuery cycle on my portfolio and it works in FF3

[jQuery] Re: jquery + cycle + IE

2009-08-10 Thread Mike Alsup
http://negativespace.ca/clients/mirrorbuilder/ snip/ Works fine in Safari and Firefox so far, but for whatever reason, both of those controllers will not show up in IE6 or IE7. I am a little bit stumped. Just looked in IE7 - looks good to me. Did you fix it?

[jQuery] Re: jQuery on IE

2009-07-10 Thread Paulodemoc
It worked just fine :) Thanks a lot, you guys ^^ On Jul 9, 6:20 pm, Ricardo ricardob...@gmail.com wrote: I was wondering how noone had noticed it. I know that application/ javascript, which should be the current standard, does not work in IE. application/x-javascript probably doesn't as well.

[jQuery] Re: jQuery on IE

2009-07-10 Thread Paulodemoc
Thanks for the tips :) Learning is always good ;) I will try text/javascript and let you know the results ... On Jul 9, 6:20 pm, Ricardo ricardob...@gmail.com wrote: I was wondering how noone had noticed it. I know that application/ javascript, which should be the current standard, does not

[jQuery] Re: jQuery on IE

2009-07-09 Thread expresso
Does this work instead? Just curious jQuery(document).ready(function(){ On Jul 9, 2:45 pm, Paulo Henrique paulode...@gmail.com wrote: Hello people... I've been working with jQuery for some time now, but mostly on Firefox. But i was finishing an old project, and needed javascript, so I

[jQuery] Re: jQuery on IE

2009-07-09 Thread Cesar Sanz
Maybe you are not including jquery before $(document) also try $(function(){ var nome = ; var pos = ; var html = document.createElement(div); $(html).attr(id, submenu); }); - Original Message - From: Paulo Henrique To: jquery-en@googlegroups.com Sent:

[jQuery] Re: jQuery on IE

2009-07-09 Thread expresso
Also, do you really have script in there like you are showing? Or do you actually have script type=text/javascript ? On Jul 9, 2:52 pm, expresso dschin...@gmail.com wrote: Does this work instead?  Just curious jQuery(document).ready(function(){ On Jul 9, 2:45 pm, Paulo Henrique

[jQuery] Re: jQuery on IE

2009-07-09 Thread Matt Kruse
On Jul 9, 2:55 pm, expresso dschin...@gmail.com wrote: Also, do you really have script in there like you are showing?  Or do you actually have script type=text/javascript ? Wouldn't matter anyway. Most likely cause is that the jQuery code itself is erroring out, causing $ to be undefined.

[jQuery] Re: jQuery on IE

2009-07-09 Thread Paulodemoc
Hello all... i have correctly included all scripts, and I am using jQuery 1.3.2 i have included the script like that: script language=javascript src=?php echo base_url();?js/ jquery.js type=application/x-javascript /script and the code that's causing the error is between simple script.../ script

[jQuery] Re: jQuery on IE

2009-07-09 Thread Matt Kruse
On Jul 9, 3:14 pm, Paulodemoc paulode...@gmail.com wrote: Hello all... i have correctly included all scripts, and I am using jQuery 1.3.2 i have included the script like that: script language=javascript src=?php echo base_url();?js/ jquery.js type=application/x-javascript /script View the

[jQuery] Re: jQuery on IE

2009-07-09 Thread Paulodemoc
The generated code is script language=javascript src=http://servidor/astral/web/js/ jquery.js type=application/x-javascript /script I tryied to add the alert('jQuery not loaded'); but no alert was shown But still, the error persists... I will paste here the full code, so you guys can see:

[jQuery] Re: jQuery on IE

2009-07-09 Thread Matt Kruse
So now enter this in IE's address bar: http://servidor/astral/web/js/jquery.js Does it load? If yes, then create this document: htmlhead script language=javascript src=http://servidor/astral/web/js/ jquery.js type=application/x-javascript /script script alert($); /script /head/html What does

[jQuery] Re: jQuery on IE

2009-07-09 Thread Paulodemoc
the address to js is correct, it opens just fine. I created a new document: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns=http://www.w3.org/1999/xhtml; head meta http-equiv=Content-Type content=text/html;

[jQuery] Re: jQuery on IE

2009-07-09 Thread Peter Edwards
Why is the type attribute of the script tag set to application/x-javascript rather than text/javascript ? on 09/07/2009 21:40 Paulodemoc said:: the address to js is correct, it opens just fine. I created a new document: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://

[jQuery] Re: jQuery on IE

2009-07-09 Thread Ricardo
I was wondering how noone had noticed it. I know that application/ javascript, which should be the current standard, does not work in IE. application/x-javascript probably doesn't as well. On a side note, you're wasting function calls, as you're already using native element creation set the .id

[jQuery] Re: jquery lightbox - ie height problem

2009-04-23 Thread Zeeshan Khan
if u mean the gray background u get when u click the image...it working fine in all the four browsers i tried IE7,FF 3.0,Chrome safari..if this is not ur problm then cud u give more detail.. Regards; Zeeshan Ahmed Khan On Thu, Apr 23, 2009 at 1:17 PM, Titti prima...@gmail.com wrote: Hi,

[jQuery] Re: jQuery and IE

2009-02-24 Thread James
More info is needed. Either a sample link of it not working or code and versions of files. On Feb 24, 9:35 am, Bob O sngndn...@gmail.com wrote: So im stumped..I have my jquery file in the headers, and it works in Opera, Safari, FF on mac, and FF on Windows, but i get nothing in IE..its there,

[jQuery] Re: jQuery and IE

2009-02-24 Thread brian
On Tue, Feb 24, 2009 at 2:35 PM, Bob O sngndn...@gmail.com wrote: So im stumped..I have my jquery file in the headers, and it works in Opera, Safari, FF on mac, and FF on Windows, but i get nothing in IE..its there, its just broken. We're not getting much, either. Care to elaborate?

[jQuery] Re: jQuery and IE

2009-02-24 Thread Bob O
sorry..new to the group thing here as well... i have narrowed it down to this piece of code. when i remove it all js works as written.. $(document).ready(function() { $('#create_campaign_form').validate({ rules: { name: {required: true, minlength: 3}, startDate:

[jQuery] Re: jQuery and IE

2009-02-24 Thread James
messages: { name: { required: You must provide a Campaign Name., minlength: Your Campaign name must be at least 3 characterss long. }, startDate: { required: You must provide a start date. } endDate:

[jQuery] Re: jQuery and IE

2009-02-24 Thread James
Sorry I missed a comma after startDate and before endDate: messages: { name: { required: You must provide a Campaign Name., minlength: Your Campaign name must be at least 3 characterss long. }, startDate: { required: You

[jQuery] Re: jQuery and IE

2009-02-24 Thread Bob O
Thank you..i just figured that out..Appreciate all those that commented.. Thanks On Feb 24, 2:29 pm, James james.gp@gmail.com wrote: Sorry I missed a comma after startDate and before endDate: messages: {            name: {               required: You must provide a Campaign Name.,    

[jQuery] Re: jQuery and IE

2009-02-24 Thread Vincent Nguyen
Some my exp! Aslo, take a notice that Something lieks this: messages: { name: { required: You must provide a Campaign Name., minlength: Your Campaign name must be at least 3 characterss long. }, startDate: { required: You must

[jQuery] Re: jQuery / XML / IE

2008-12-01 Thread JOE VELEZ
Jemo - Your link appears to be working in IE7 ... probably since you've updated your script since this posting/solution below. Do you have your original code that wasn't working? It would be nice to see the differences in your code. Thanks - Joe

[jQuery] Re: jQuery / XML / IE

2008-11-14 Thread Jemo
Much appreciated On Nov 13, 5:09 pm, ken [EMAIL PROTECTED] wrote: http://dev.jquery.com/ticket/3143 http://docs.jquery.com/Specifying_the_Data_Type_for_AJAX_Requests(the code block) On Thu, Nov 13, 2008 at 10:37 AM, Jemo [EMAIL PROTECTED] wrote: OK, this works marvelously in Safari and

[jQuery] Re: jQuery / XML / IE

2008-11-13 Thread Mike Alsup
OK, this works marvelously in Safari and Firefox for the Mac as well as Firefox for the PC but it doesn't work worth spit in IE. I would appreciate any assistance. It's just reading form a simple XML file to output information in divs. http://rationalogic.com/xml/ Works ok in IE7.

[jQuery] Re: jQuery / XML / IE

2008-11-13 Thread ken
http://dev.jquery.com/ticket/3143 http://docs.jquery.com/Specifying_the_Data_Type_for_AJAX_Requests (the code block) On Thu, Nov 13, 2008 at 10:37 AM, Jemo [EMAIL PROTECTED] wrote: OK, this works marvelously in Safari and Firefox for the Mac as well as Firefox for the PC but it doesn't work

[jQuery] Re: jquery history_remote IE bug?

2008-10-14 Thread Klaus Hartl
Could you post a demo? I suspect a few things but can't really tell. --Klaus On 13 Okt., 18:27, Leanan [EMAIL PROTECTED] wrote: I'm not sure if this is a bug so I thought I'd ask folks and see what they had to say. I have some export links on a page, and despite me not using $.remote or

[jQuery] Re: jQuery AJAX IE Error

2008-05-08 Thread Wil Everts
Instead of: var status = $(status, dataSet).text(); Try this: var status = $(dataSet).find('status').text(); Hope that helps. Wil Everts [EMAIL PROTECTED]

[jQuery] Re: jQuery, AJAH IE 7

2008-01-25 Thread Vlad Mazek
MorningZ, As mentioned, the live page is here: http://support.ownwebnow.com/test589.php 1. Basically, I am using jQuery forms and based on the input on the front page I return another form (not nested) into div id='companyForm' that is prefilled with the data from the database. 2. The data in

[jQuery] Re: jQuery, AJAH IE 7

2008-01-25 Thread Vlad Mazek
Ok, I made it a whole lot simpler, hopefully someone can point me to the mistake I am making: http://support.ownwebnow.com/test.php This form uses jQuery form plugin to put the result of the submission (to test1.php) into companyForm div. Works great. test1.php returns a form, which also uses

[jQuery] Re: jQuery, AJAH IE 7

2008-01-24 Thread Benjamin Sterling
Vlad, Do you have a url we can look at? Run your site in Opera, it gives better error messages so you know were to look for your code error. Tools - Advanced - Error console. On 1/24/08, Vlad Mazek [EMAIL PROTECTED] wrote: Folks, I have a bit of a problem with Internet Explorer 6/7

[jQuery] Re: jQuery, AJAH IE 7

2008-01-24 Thread Benjamin Sterling
Also, check to see if you have an extra common in any of your params, ie css({left:0,top:0,}) -- will throw object expected error in IE On 1/24/08, Benjamin Sterling [EMAIL PROTECTED] wrote: Vlad, Do you have a url we can look at? Run your site in Opera, it gives better error messages so you

[jQuery] Re: jQuery, AJAH IE 7

2008-01-24 Thread MorningZ
Got the page live somewhere to look at? Also, have you tried using Fiddler (http://www.fiddlertool.com/ fiddler/) to see the client request/response for errors? On Jan 24, 4:39 pm, Vlad Mazek [EMAIL PROTECTED] wrote: Folks, I have a bit of a problem with Internet Explorer 6/7

[jQuery] Re: jQuery, AJAH IE 7

2008-01-24 Thread Vlad Mazek
Benjamin, None of that sir, here is a demo: https://support.ownwebnow.com/test589.php (just start typing two letters, it uses autocomplete..) The demo looks a little insane, I had to pull it out of the app and remove the error checks, authentication, etc. -Vlad On 1/24/08, Benjamin Sterling