Re: [jQuery] FullCalendar

2009-12-09 Thread mani ashok
Hi,

Yes, I am using in one of my site. I think the issue is in the json-events
file. Please check whether json renders properly and let us know.

On Wed, Dec 9, 2009 at 10:11 PM, Paulo Henrique paulode...@gmail.comwrote:

 Has anyone here ver used this plugin? It is called 
 FullCalendarhttp://www.google.com/url?sa=tsource=webct=rescd=1ved=0CAcQFjAAurl=http%3A%2F%2Farshaw.com%2Ffullcalendar%2Fei=o9EfS_aWHcieuAe72cyEDAusg=AFQjCNFn7CjTrWq-63B_b7V1Bf7IsYgSBQsig2=XSfJCqIHMU4__qJ9JGiqxQ
 http://www.google.com/url?sa=tsource=webct=rescd=1ved=0CAcQFjAAurl=http%3A%2F%2Farshaw.com%2Ffullcalendar%2Fei=o9EfS_aWHcieuAe72cyEDAusg=AFQjCNFn7CjTrWq-63B_b7V1Bf7IsYgSBQsig2=XSfJCqIHMU4__qJ9JGiqxQI
 am having issues using it... everytime I add an event, it is always rendered
 on sunday... The js file isn't calculing the 'left' positioncorrectly...


 Att.
 Paulo Henrique Vieira Neves
 Bsc. Sistemas de Informação
 +55 38 9141 5400
 MSN: paulode...@live.com
 GTALK: paulode...@gmail.com
 SKYPE: paulodemoc




-- 
Ashok
9884480769


[jQuery] Re: html() in an iframe

2009-03-06 Thread mani ashok
Hi  webdeveloperintexas ,

I am trying to set the value of FCKEditor through javascript/jquery, but it
could it reflect in that FCKEditor. Can you please tell me how to set the
value of FCKEditor through javascript/jquery.

Thanks in Advance.
Ashok

On Tue, Feb 17, 2009 at 8:42 AM, webdeveloperintexas 
prove.faith...@gmail.com wrote:


 I had an iframe inside an iframe so this is what I had to use:

 var details = $(#details___Frame).contents().find(body).find
 (#xEditingArea iframe).contents().find(body).html();

 Thank goodness for firebug!


 On Feb 16, 6:42 pm, webdeveloperintexas prove.faith...@gmail.com
 wrote:
  I tried that and it did not work.
 
  On Feb 16, 4:04 pm, brian bally.z...@gmail.com wrote:
 
   Try $('#xEditingArea').contents().find('body').html()
 
   On Mon, Feb 16, 2009 at 3:31 PM, webdeveloperintexas
 
   prove.faith...@gmail.com wrote:
 
I'm attempting to get the contents of the page -- its HTML code.
Everything always returns null.
Here is what I tried:
   var details = $('#xEditingArea').html();
   alert(a+details);  -- returns null
   var details = $('#xEditingArea iframe html
 body').html();
   alert(b+details); -- returns null
 
The page is using fckeditor and I need the contents of the fckeditor
which uses numerous iframes.
 
The tags are these:
xEditingArea is the id of the td tag that then contains an iframe.
The iframe contains html then body tags.  None of these have any
identifying characteristics put on them by the fckeditor so I can't
retrieve them using an id.
 
Is there something in jquery that prevents it from returning the
 html?
Is it the iframes that is causing the problem?
I've tried hundreds of combinations and can't figure it out.
 
I am doing an autosave and it used to work with niceditor but then I
had to switch over to fckeditor and found this problem. I've spent 3
hours and have gotten nowhere.
 
Any help would be appreciated.




-- 
Ashok
9884480769


[jQuery] Issues in using getJSON menthod

2008-01-15 Thread ashok

HI all,
I am trying to use the getJSON method to fetch data from a json file
on clicking a link.Now  i make a div element empty initially and after
fetching the content i use $('#midbox').append($(html));.Now the
updated contents are visible for a second then it reverts to the
original contents of #midbox.Now i am not able to figure it out why
this happens.This is my code snippet:
snip
$('ulliullia').click(function(){

var name=$(this).text();



var filename='js/'+ name + '.json';


$.getJSON(filename,function(data){

$('#midbox').empty();
$.each(data,function(entryIndex,entry){
var html='table width=430px cellspacing=3 cellpadding=3
border=0 ';

html+='tr';

html+='td align=leftp class=heading'+entry['name']+
'span class=maximise';
html+='/spanbr/p';
html+='div class=entry'+entry['Introduction']+'/div/td/
tr';
html+='tr';
html+='td align=leftp class=heading Rule span
class=maximise';
html+='/spanbr/p';
html+='div class=entry';
html+='ul';
$.each(entry['rule'],function(lineIndex,line){
html+='li'+line+'/li';
});
html+='/ul/div/td/tr';
html+='/table';
$('#midbox').append($(html));

});


});


   });
/snip