[jQuery] Using jQuery to see if CSS is disabled.

2009-09-03 Thread mumbojumbo

Hello All,

I'm trying to code a site using progressive enhancement methods. It's
built upon standards-compliant CSS and HTML and JS. I'm using jQuery
on the site to animate some elements on hover etc. Now, when CSS and
JS is disabled, it's all good. But, If CSS is disabled and JS is still
enabled, the js still manipulates the elements and it's not what I
want. I was wondering if anybody knew anything about this. I can't
seem to find anything about this...


[jQuery] Re: can jQuery support drawing items on a CANVAS? (e.g. web-based UML tool)

2009-02-19 Thread mumbojumbo

Well,

IE doesn't support Canvas for IE support you'd have to use iecanvas.js
or something similar.

On Feb 19, 6:38 pm, greghauptmann  wrote:
> Hi,
>
> Question 1 - Can jQuery support drawing items on a CANVAS?  I have a
> project where I would like to have a web-based means of displaying a
> simple topology diagram (image a simple UML diagram if you like).  The
> ability to display it + ability to have right hand mean to trigger a
> call to a "add_a_new_element" dialog for example.  If yes, any
> suggestions re best place to start digging in?
>
> Question 2 - Assuming the answer is yes to the above, would the jQuery
> support provide cross-browser platform capability (I'm just not
> personally sure how standard browser canvas usage is)
>
> Thanks


[jQuery] wiki software used for docs.jquery.com?

2009-02-15 Thread mumbojumbo

I love the docs and I was wondering what wiki platform they were
using. Any Idea? I think its a modified version of mediawiki but I
thought I would ask.

Thanks,
MJ


[jQuery] Re: JavaScript not executing from external html files from Ajax call into Div

2009-02-12 Thread mumbojumbo

I'm having a similar problem, I have div that gets data from external
pages of my site, and I want to use jquery to  do a smooth scroll
(http://flesler.blogspot.com/2007/10/jquerylocalscroll-10.html) but It
won't apply.. any ideas?

On Feb 12, 4:55 pm, Alex  wrote:
> Hello,
>
> This is my first message and I am extremely new to jQuery.
>
> I am using Ajax to call external html pages into a div in my site.  I
> have three external html forms which uses JavaScript and one .pl
> file.  When I call these pages, the html pages are being rendered
> correctly but the JavaScript and .pl file (form post) is not being
> executed.  Any ideas on how to resolve?  Any assistance/help would be
> appreciated.
>
> Thanks in advance.
>
> - Alex


[jQuery] Re: Content called using $().load() isn't displaying in IE (content contains an Iframe)

2009-02-12 Thread mumbojumbo

I also tried using an  tag, as that is strict compliant, It
still works in FF Safari Opera but It won't load when called through
jquery in IE. IS there a force reload?

On Feb 12, 8:18 am, mumbojumbo  wrote:
> You got my code down, that's what it does. The iframe is loading
> different domain, and I'm testing in IE7. I just need to figure this
> out by the end of the day. This is the problem though, When I load
> giftcards.html ( the page with the iframe) into my browser it works,
> but when I ajax load the iframe into another page, it doesn't work in
> IE7.
>
> On Feb 11, 11:28 pm, "scottg...@gmail.com" 
> wrote:
>
>
>
> > I'm not 100% clear on what you are asking here but, looking at your
> > code:
>
> > Looks like if you click on the anchor with class "ajax" you are
> > loading the href into the "#content" object.  Is the iframe that you
> > are messing with on the same domain?  There are a ton of funky
> > security permissions with iframes.  Especially for IE6.
>
> > On Feb 11, 9:44 pm, mumbojumbo  wrote:
>
> > > Hello,
>
> > > I have some code that loads content into a div using the .load
> > > function in jQuery. Now, the content that is pulled from the page is a
> > > in a div and in one of the div's, I have an I frame. The code I have
> > > works for FF Opera Safari but in IE the page doesn't do anything (Or
> > > at least, Doesn't show anything)
>
> > > Ideas Comments?
>
> > > Code:
>
> > > $('.ajax').bind("click", function(e) {
> > >                                         e.preventDefault();
> > >                                 var fileName = $(this).attr("href");
> > >                                 $('#content').fadeOut('slow',function(){
> > >                                                 $(this).load(fileName+' 
> > > #wrap', function(){
> > >                                         $('#content').fadeIn('slow');
> > >                                         });
> > >                         });
> > >                                 });
>
> > > the div id that is loaded is called wrap and the only page that gives
> > > me a problem in IE is the one where wrap contains an iframe.- Hide quoted 
> > > text -
>
> > - Show quoted text -- Hide quoted text -
>
> - Show quoted text -


[jQuery] Re: Content called using $().load() isn't displaying in IE (content contains an Iframe)

2009-02-12 Thread mumbojumbo

You got my code down, that's what it does. The iframe is loading
different domain, and I'm testing in IE7. I just need to figure this
out by the end of the day. This is the problem though, When I load
giftcards.html ( the page with the iframe) into my browser it works,
but when I ajax load the iframe into another page, it doesn't work in
IE7.

On Feb 11, 11:28 pm, "scottg...@gmail.com" 
wrote:
> I'm not 100% clear on what you are asking here but, looking at your
> code:
>
> Looks like if you click on the anchor with class "ajax" you are
> loading the href into the "#content" object.  Is the iframe that you
> are messing with on the same domain?  There are a ton of funky
> security permissions with iframes.  Especially for IE6.
>
> On Feb 11, 9:44 pm, mumbojumbo  wrote:
>
>
>
> > Hello,
>
> > I have some code that loads content into a div using the .load
> > function in jQuery. Now, the content that is pulled from the page is a
> > in a div and in one of the div's, I have an I frame. The code I have
> > works for FF Opera Safari but in IE the page doesn't do anything (Or
> > at least, Doesn't show anything)
>
> > Ideas Comments?
>
> > Code:
>
> > $('.ajax').bind("click", function(e) {
> >                                         e.preventDefault();
> >                                 var fileName = $(this).attr("href");
> >                                 $('#content').fadeOut('slow',function(){
> >                                                 $(this).load(fileName+' 
> > #wrap', function(){
> >                                         $('#content').fadeIn('slow');
> >                                         });
> >                         });
> >                                 });
>
> > the div id that is loaded is called wrap and the only page that gives
> > me a problem in IE is the one where wrap contains an iframe.- Hide quoted 
> > text -
>
> - Show quoted text -


[jQuery] Content called using $().load() isn't displaying in IE (content contains an Iframe)

2009-02-11 Thread mumbojumbo

Hello,

I have some code that loads content into a div using the .load
function in jQuery. Now, the content that is pulled from the page is a
in a div and in one of the div's, I have an I frame. The code I have
works for FF Opera Safari but in IE the page doesn't do anything (Or
at least, Doesn't show anything)

Ideas Comments?

Code:

$('.ajax').bind("click", function(e) {
e.preventDefault();
var fileName = $(this).attr("href");
$('#content').fadeOut('slow',function(){
$(this).load(fileName+' #wrap', 
function(){
$('#content').fadeIn('slow');
});
});
});

the div id that is loaded is called wrap and the only page that gives
me a problem in IE is the one where wrap contains an iframe.


[jQuery] Saving HTML as an image...

2009-01-11 Thread mumbojumbo

Hello,

I'm working on an application that will use jquery to make charts and
graphs and I want to allow the user to save the html as an image. Can
this be done? This really isn't a jquery question per se, but I would
like to know if jquery could do it/ or if it can be done at all.

MJ


[jQuery] $().fadeIn using a png in IE7 , it's ugly.

2008-12-23 Thread mumbojumbo

I'm trying to fade an image using .fadeIn , The code works but the
implementation in IE7 is ugly. Any work arounds/ fixes? I'm using jQ
1.2.6 and it works fine in FF... I've also tried to use it on an 
and a  with the background image as the png. Still no luck.

Any help would be appreciated!

Mumbo