[jQuery] Re: jquery.ckeditor non functional?

2010-01-03 Thread Met00 - Met00Cigar
Clarification I wrote: Now, I can get the CKEditor to set up IF I add the following... CKEDITOR.replace({skin: 'kama' }) Let me clarify ### Remove from javascript ### var CKEDITOR_BASEPATH = 'http://www.domain.com/ckeditor/'; $(function(){   $.ckeditor.config = {skin: 'kama' };      

Re: [jQuery] Re: Animate or ToggleClass

2010-01-03 Thread waseem sabjee
Ok, what I gave you was a simple example. Lets analyse a little more and lets see what you want exactly. 1. you want a list of parent items with + signs before them. 2. when these parent items are clicked you want your content to slide fade down or slide fade up depending on their current state

Re: [jQuery] Re: How to check whether an element is bound to an event or not?

2010-01-03 Thread waseem sabjee
on certain versions of IE i had issues where the .live() function just didn't work. no click events at all were firing only on IE. not sure if this has been fixed. On Sun, Jan 3, 2010 at 9:23 AM, Md. Ali Ahsan Rana ranacser...@gmail.comwrote: Hi, Thanks for your reply. It helped me a lot.

[jQuery] Re: jquery.ckeditor non functional?

2010-01-03 Thread Met00 - Met00Cigar
working solution... dump jquery.ckeditor change $('#btn-ajax').click(function(){ $('#form1').ajaxSubmit(options); }); to $('#btn-ajax').click(function(){ aaa = $.ckeditor.instance(editor_kama).getData(); $('#editor_kama').val(aaa); $('#form1').ajaxSubmit(options); });

Re: [jQuery] Re: How to check whether an element is bound to an event or not?

2010-01-03 Thread Md. Ali Ahsan Rana
I don't know about this much. But, just a while ago, i wa having problem binding focus event with live() method. Just solved it by the following code that i found somewhere on internet: (function(){ var special = jQuery.event.special, uid1 = 'D' + (+new Date()), uid2 = 'D' +

[jQuery] Re: simple jquery question

2010-01-03 Thread Paul Hutson
This will do what you want, first I assigned the elements via a filter : elements = $('h3').filter('.example'); Then I scrolled around the items found and output them to a span for debugging. elements.each(function() { $('#Output').html($('#Output').html() + br + $(this).html()); });

[jQuery] Re: Formatting long chains of jQuery code

2010-01-03 Thread Paul Hutson
On Jan 3, 2:03 am, Šime Vidas sime.vi...@gmail.com wrote: Is there a prefered way of formatting jQuery code when you have 5 or more chained methods? FWIW you do it the way I would.

[jQuery] Re: Fade out an initial image to reveal home page

2010-01-03 Thread Paul Hutson
On Jan 1, 8:53 pm, Trev aveollie...@gmail.com wrote: Hello, I am completely new to jQuery, and I don't even know how to approach or implement what I am trying to do. Use a div to hold the image - set it at a higher Z index than everything else. When the document has finished loading (or

[jQuery] Re: Fade out an initial image to reveal home page

2010-01-03 Thread Paul Hutson
As a side note, I did something similar in http://gameview.outer-empires.com when you finish loading after the character selection screen if you want to have a look at it.

[jQuery] Possible to call load() within a load() callback?

2010-01-03 Thread jibegod
For example, I'm fetching content from a separate page and appending it with an animation, but I'd like the animation to wait for the new content to finish loading before firing. $('#content').load(url,function(){ $('img',this).load(function(){ $(this).fadeTo('slow',1); }); });

[jQuery] Multiple file upload with ASP.NET MVC jQuery Multiple File Upload Plugin

2010-01-03 Thread 1gn1ter
Hello I'm using jQuery Multiple File Upload Plugin to upload several pictures. But form posts only 1, top, item. Fiddler (POST): POST /Images/UploadImages HTTP/1.1 Host: localhost:4793 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv: 1.9.1.6) Gecko/20091201 Firefox/3.5.6 Accept:

[jQuery] Taconite eval blocks referencing other parts of XML document

2010-01-03 Thread Brian Moquin
I want to be able to return an XML document from my server that contains more than just Taconite commands, and I want to be able to read those additional XML nodes from within a Taconite eval block. I've come up with a solution, but I wonder if there's a better way of doing this. Here's a

[jQuery] Coverflow for jQuery?

2010-01-03 Thread Bert
Hi all, I am looking for a coverflow like this http://blarnee.com/wp/open-source-javascript-coverflow/ but then for jQuery, with some easy setup if it is possible :-) I only need something for sliding the images like that, some descriptions not needed Does anyone know something like this for

[jQuery] Lightbox With Thumbnails

2010-01-03 Thread Nick Bowers
Hi, I am after something like this http://spaceforaname.com/gallery-customized.html But it a lightbox like form. Does anyone know how to do this or any that have already been made? Cheers

[jQuery] No ajax response from Firefox?

2010-01-03 Thread mitchmaster
I wrote some very simple code using jQuery to send an ajax request, and the code works fine in IE but in Firefox there is never any response. Firebug confirms this. The code calls a php script which updates a database, and the update is successful, but no text that I echo from php is retrieved by

[jQuery] Re: No ajax response from Firefox?

2010-01-03 Thread Paul Hutson
Could you post an example of your code that isn't working please?

[jQuery] Re: Coverflow for jQuery?

2010-01-03 Thread Paul Hutson
You can't quite do the same with jquery (reflections wise) you can however do a similar type animation (there are a few plugins on the jquery site that do an accordian like function)

[jQuery] Re: Animate or ToggleClass

2010-01-03 Thread John Sanabria
Waseem, again thank you for your help. Now, this is what I'm trying to do. (I'm adding a couple of screenshots for further detail) First image: As you can see, I have a unordered list with an id of filter that *filters* the items of the also unordered list with an id of portafolio. The

[jQuery] Re: Animate or ToggleClass

2010-01-03 Thread Once
It seemed my images are not showing through googlegroups. SO the first one is in http://i45.tinypic.com/2jb4n55.jpg and the second one is in http://i49.tinypic.com/jhwzh2.jpg On Jan 3, 3:28 pm, John Sanabria busetolo...@gmail.com wrote: Waseem, again thank you for your help. Now, this is what

[jQuery] Re: Looking for that plugin that uses scrollTo for product demos...

2010-01-03 Thread kgosser
bump. any thoughts? On Dec 17 2009, 6:24 pm, kgosser kgos...@gmail.com wrote: Hey all, I saw this site a few months ago that was showing off a new plugin which used the scrollTo tool to scroll through one screen shot. I can't seem to find it with a Google search, and I forgot to save it to

[jQuery] Re: Looking for that plugin that uses scrollTo for product demos...

2010-01-03 Thread Paul Hutson
Do you mean something like this? : http://plugins.jquery.com/project/ScrollTo

[jQuery] Superfish - Which files to edit (Simple question) ?

2010-01-03 Thread MiguelGarcia
Hello to all... I was looking to user comments at joomla extentions for Superfish and it seams to be very interesting Suckerfish solution. Before start with, I will need to put a question: When I go to http://users.tpg.com.au/j_birch/plugins/superfish/#examples , looking at basic style tab, in

[jQuery] Re: No ajax response from Firefox?

2010-01-03 Thread mitchmaster
Here is the code. I have also tried this using the $.post method rather than the $.ajax method with identical results. function posthtml() { $.ajax({ type: POST, url: response.php, data: pagehtml= + encodeURIComponent

[jQuery] FireFox Pages flicker when jQuery reads a CSS attribute of a div

2010-01-03 Thread average_user
When starting to use jQuery I was assuming that jQuery would be a stable interface that removes the headache of having to deal with multiple browser APIs. It certainly has a lot of features that achieve this. Now I have a case where jQuery makes things worse for me with a dimension that I have

[jQuery] $(form).serialize() does not include submit button data

2010-01-03 Thread Milan Andric
I was wondering if this is a bug or not ... here's the full example: http://andric.us/media/tmp/jquery-form.html I would think the submit button data would also be included when doing $(form_obj).serialize()? Apologies if this has already been answered somewhere already. It can easily be

[jQuery] Pass form value

2010-01-03 Thread JamaicaMan
I am working on translating a website where instead of repotting the pages I just move the changed content into a DIV using jQuery “ajax_load”. The code is simple and of the form: [code] var loadCreditCardDonation = 'content/creditCardDonation.php';

[jQuery] Re: $(form).serialize() does not include submit button data

2010-01-03 Thread Dave Methvin
I would think the submit button data would also be included when doing $(form_obj).serialize()? When you submit a form manually, the value of the submit button clicked is sent as part of the form. If you serialize the form using Javascript, no button was clicked so none of them are serialized.

[jQuery] Sentence Case?

2010-01-03 Thread dmikester1
I can't find any jQuery plugin or even code that will do Sentence Case in a input field onkeyup. Does anyone know how I can do this? Thanks Mike

[jQuery] Re: jquery.js and jquery-1.2.6.pack.js conflict

2010-01-03 Thread Mr.Aaqib
well i used the code provided by example that i download form net. I did change some functionality but i didn't change the files that are included in the pack. I used almost AS IT IS. On Jan 1, 5:07 pm, Ashwanth Kumar ashwanth.ku...@gmail.com wrote: Well, did u use jQuery when used with

[jQuery] Re: jquery.js and jquery-1.2.6.pack.js conflict

2010-01-03 Thread Mr.Aaqib
how can i get the full version of files? I used the files provided by example that i downloaded from the internet. On Jan 1, 7:28 pm, MorningZ morni...@gmail.com wrote: also, while debugging/diagnosing:  use the *full* versions of the files, do not use packed or minified, as they complicated

Re: [jQuery] Superfish - Which files to edit (Simple question) ?

2010-01-03 Thread Charlie
joomla extension will take care of inserting the head code needed as well as provide various options in the admin for setting up menu. Follow the extension instructions. Superfish website isn't really set up for CMS extension installs, like Joomla, however the css tricks will likely be useful