[jQuery] page title + ajax + search engine problem

2007-03-26 Thread Agrawal, Ritesh
Hi, I am not sure whether this is the right place for putting this question. However, since it is concerned with ajax and jquery, I will take my chance. My problem is I am using ajax to load content in the main div of my webpage. I use javascript to dynamically change the title of the webpage.

[jQuery] Ajax + Page title

2007-03-17 Thread Agrawal, Ritesh
Hi, I wanted to know is it possible to set page title using ajax. Actually I load certain content of my website using ajax and wanted to reset the title to suit the current display. But I didn't find any way to do this. Regards, Ritesh -- View this message in context:

[jQuery] Edit in place -- update two div

2007-03-14 Thread Agrawal, Ritesh
Hi I am using Mika Tuupola's edit in place script (http://www.appelsiini.net/~tuupola/javascript/jEditable/) . It workes fine..but I have some trouble in extending it. Actually I want to update two divs when user is done with editing. But I am not sure how I can do that with jeditable.. here

Re: [jQuery] Bug Report - Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE)

2007-03-12 Thread Agrawal, Ritesh
Hi Klaus, no, I am not loading external site..but redirecting within my own domain...value contains relative path to other pages of my website. Regards, Ritesh Klaus Hartl wrote: Agrawal, Ritesh schrieb: hi, I think I found a bug. It happens when I try to use click function..here

Re: [jQuery] Bug Report - Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE)

2007-03-12 Thread Agrawal, Ritesh
whether the problem is due to some ajax or is an inherent bug in JQuery Regards, Ritesh Klaus Hartl wrote: Agrawal, Ritesh schrieb: Hi Klaus, no, I am not loading external site..but redirecting within my own domain...value contains relative path to other pages of my website. Regards

[jQuery] need ideas - alternative to select option

2007-03-11 Thread Agrawal, Ritesh
Hi, I have a simple problem, but I don't see any easy solution. I have a select option which shows titles of an article. This select option is placed on the left side just below the navigation menu and thus has small width. My problem is that the values of titles of articles are long and do

[jQuery] Bug Report - Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE)

2007-03-11 Thread Agrawal, Ritesh
hi, I think I found a bug. It happens when I try to use click function..here is my script that generates the error $(span.opt_value).click(function(){ alert($(this).attr('value')); $(div#content).load($(this).attr('value'));

[jQuery] javascript is not executed after post

2007-03-08 Thread Agrawal, Ritesh
Hi, I am some problem with jQuery.post(url, parmas)..I use the jQuery.post and after that I get a page which again contains some jquery scripts. But they never get fired up. I can see the javascript using the firebug tool in firefox. Any idea what might be the problem. Regards, Ritesh -- View

[jQuery] need some idea

2007-03-08 Thread Agrawal, Ritesh
Hi, I need some idea on how to do this. I have a big user survey form. It has around 25 fields. However, depending on the type of user such as administrator, member, etc...many fields are not required. In my survey form, a user will select user type from a select box. My problem: I don't want

Re: [jQuery] need some idea

2007-03-08 Thread Agrawal, Ritesh
is selected. - jake On 3/8/07, Agrawal, Ritesh [EMAIL PROTECTED] wrote: Hi, I need some idea on how to do this. I have a big user survey form. It has around 25 fields. However, depending on the type of user such as administrator, member, etc...many fields are not required. In my

[jQuery] ajaxSubmit not defined

2007-02-24 Thread Agrawal, Ritesh
Hi, I am trying to use ajaxSubmit form plugin..however, when i click on submit button, the form is submitted without ajax...the problem is that the javascript is not able to determine ajaxSubmit method. I also tried using ajaxForm. but again, javascript is not able to find the method. I made

[jQuery] Any idea on how to replace select with div

2007-02-14 Thread Agrawal, Ritesh
Hi, I am wondering did anyone ever tried to create some alternative for selectoption list. I like using select-option as it provides the ability to use keystrokes to change selection. However, I can't change the font color or add new icons infront of the test. Hence, I was wondering to replace

[jQuery] Newbie Question - wraping an element

2007-02-13 Thread Agrawal, Ritesh
Hi, I have been using jquery for some time but never really created my own extension that requires dom manipulation. I am wondering how can I wrap a span with two table element. So my original code is something like this Original div class=box span class=headingHeading/span /div Modified

Re: [jQuery] Newbie Question - wraping an element

2007-02-13 Thread Agrawal, Ritesh
Hi, Thanks to all your reply...actually I can use wrap..as I will be inserting one more row..and both of them are not in the center of the table. ...I just showed the example for convience...the actual code that I am trying to work out is this Original Original div class=box span

Re: [jQuery] Get the selected option of a select element

2007-02-13 Thread Agrawal, Ritesh
try this $(#Organisations).change(function(){ $(#organisation).attr('value', $(this).attr('value') ); }); Regards, Ritesh Alexandre Plennevaux-2 wrote: hello! i'm trying to have the selected option's value in a select element populate an input field. i tried this:

Re: [jQuery] Corner + hover + IE7 -- not working

2007-02-13 Thread Agrawal, Ritesh
Hi Mike, Thanks for probing me...actually the problem was with jquery..I was using older version of jquery ..I downloaded that last year in November...once I updated my jquery everything started working fine.. cheers :) Ritesh malsup wrote: I am using Dave Methvin's corner plugin..Its

Re: [jQuery] wrap, before, after all not working with table data

2007-02-13 Thread Agrawal, Ritesh
Hi all , This seems exactly the same problem as mine see http://www.nabble.com/Newbie-Question---wraping-an-element-tf3219302.html Glad to see someone else is also having trouble :-) Ritesh Ryan Doom wrote: Hey guys, does Jquery not get along with complex HTML table wrapping or

[jQuery] Corner + hover + IE7 -- not working

2007-02-12 Thread Agrawal, Ritesh
Hi, I am trying to get corner and hover to work together. The code works properly for FF but fails in IE7..below is my sample script that I have been trying on.. html head titleTest Page/title script src=jquery.js type=text/javascript/script script src=corner.js type=text/javascript/script

Re: [jQuery] Corner + hover + IE7 -- not working

2007-02-12 Thread Agrawal, Ritesh
hmm.. no response... experts..do you have any suggestion.. Regards, Ritesh Agrawal, Ritesh wrote: Hi, I am trying to get corner and hover to work together. The code works properly for FF but fails in IE7..below is my sample script that I have been trying on.. html head titleTest

Re: [jQuery] JQuery IE7 and document.ready

2007-02-11 Thread Agrawal, Ritesh
Hi Matt and John The code I provided was just a demo to show how things are arranged. The actual code is free of error as I checked with firebug. It seems the trouble is with what Matt is sujesting that $(document).ready wont work with ajax load. I am not sure what might be the best solution.