If you do $.load('yourfile.php') you will get the contents of your word document to jquery.
Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sun, Jan 11, 2009 at 10:16 AM, bharani kumar <bharanikumariyer...@gmail.com> wrote: > > But am using the php combination know , so it is not possible to call like > > load('phpfile name '); ? > > > Sorry , i dont jquery, > > > > On Sun, Jan 11, 2009 at 10:38 AM, jQuery Lover <ilovejqu...@gmail.com> > wrote: >> >> You can not call your com objects in jQuery. All you can do is request >> them (it will not parse it in any way). >> >> Read jQuery HowTo Resource - http://jquery-howto.blogspot.com >> >> >> >> On Sun, Jan 11, 2009 at 9:58 AM, bharani kumar >> <bharanikumariyer...@gmail.com> wrote: >> > >> > Hi every one, >> > >> > >> > Am working on the PHP COM Objects , >> > >> > When i run the com object, it take around 50 sec for loading, so for get >> > the >> > better performance we have to go to jquery, >> > >> > >> > But i dont know how to call the com objects file php, >> > >> > But i know if we want to call the php file we have to call like this >> > >> > $('#divid').load('example.php') >> > >> > Can any tell below is my COM OBJECT IN PHP CODE, >> > >> > Can you tell now , how can i use the jquery for the below snippet, >> > >> > Thanks >> > >> > <?php >> > $word = new COM("word.application") or die ("Could not initialise MS >> > Word >> > object."); >> > $word->Documents->Open(realpath("sample.doc")); >> > >> > // Extract content. >> > $content = (string) $word->ActiveDocument->Content; >> > >> > echo $content; >> > >> > $word->ActiveDocument->Close(false); >> > >> > $word->Quit(); >> > $word = null; >> > unset($word); >> > ?> >> > >> > >> > >> > How to call the com Object in JQUERY , >> > >> > >> > >> > >> > -- >> > உங்கள் நண்பன் >> > பரணி குமார் >> > >> > Regards >> > B.S.Bharanikumar >> > >> > POST YOUR OPINION >> > http://bharanikumariyer.hyperphp.com/ >> > http://bharanikumariyerphp.site88.net/ >> > > > > > -- > உங்கள் நண்பன் > பரணி குமார் > > Regards > B.S.Bharanikumar > > POST YOUR OPINION > http://bharanikumariyer.hyperphp.com/ > http://bharanikumariyerphp.site88.net/ >