[jQuery] sending form’s button’s value

2009-08-19 Thread efet
User's data posted once user click either of buttons with same name=respond different values Confirm and Ignore. My problem here, button's values are not posted when I use jquery as in the following codes. Is there a way to fix this? $([name='respond']).live('click', function() {

[jQuery] need help with logic

2009-08-19 Thread efet
I have search page. At this page, when user enters a value to the form field and clicks submit, the value is posted and server's results printed inside main div. Now, I want to add search form to main page and so when user enters a value to the form field and clicks submit, he is redirected to

[jQuery] submit inside submit

2009-08-18 Thread efet
Hi, I dont understand why the following code is not working. I dont receive any errors, its just not working. $(document).ready(function() { $(function Requests() { $.ajax({ type: 'GET', url:

[jQuery] Re: submit inside submit

2009-08-18 Thread efet
I have request boxes. they are called from index.cs.asp? Process=ViewRequests. Then I have forms inside these boxes. All with same ids #REQUESTFORM. when user clicks submit button (all have name=respond) in any of these forms I need that form sent to index.cs.asp?Process=RespondRequests and print

[jQuery] Form submit

2009-08-17 Thread efet
Hi, Can someone tell me why the following form submit codes are not working. When I click submit, I want to see other page's output and form submitted text but instead nothing appears. $(document).ready(function() { $([name=signup]).click(function() { $.ajax({

[jQuery] Re: Form submit

2009-08-17 Thread efet
I missed few s there thank you. I am pasting the updated code here. I just installed firebug. I dont receive any errors, what happens is page is refreshed. Before moving to an easier method, I want to learn this method first. I am just a beginner yet. Do you think page is refreshed because I have

[jQuery] Re: Form submit

2009-08-17 Thread efet
for AJAX response. 2009/8/17 efet efetun...@gmail.com: I missed few s there thank you. I am pasting the updated code here. I just installed firebug. I dont receive any errors, what happens is page is refreshed. Before moving to an easier method, I want to learn this method first. I am

[jQuery] Re: Form submit

2009-08-17 Thread efet
something specific about the object (also called an inspector). I hope this helps. 2009/8/17 efet efetun...@gmail.com: Ok now it partially worked! I get Contact Form Submitted! message once I click submit. But! there still is a one problem. When form submitted, if email address is used

[jQuery] Re: Form submit

2009-08-17 Thread efet
. It is defined in the doucmentation as function(data, textStatus). Try adding the textStatus parameter to your function even though you don't use it and see if it changes anything. 2009/8/17 efet efetun...@gmail.com: Great explanation, thank you so much. But I still cant grab output of page we sent

[jQuery] Re: Form submit

2009-08-17 Thread efet
I tried it as: success: function(msg, textStatus){ alert( Server Response: + msg ); } Nothing changed.

[jQuery] help needed retrieving json data with jquery

2009-08-07 Thread efet
There is not a single clear example that explains how to pull json data as simple as possible. I have a valid json and I need to retrieve it with jquery my json output is as: { title: blog entries, items : [ { title: Can Members of the Diaspora Work Effectively at

[jQuery] Re: help needed retrieving json data with jquery

2009-08-07 Thread efet
That did not fix. On Aug 7, 12:44 pm, Dhruva Sagar dhruva.sa...@gmail.com wrote: It should be json[i].title as per your json. Thanks Regards, Dhruva Sagar. On Fri, 2009-08-07 at 09:38 -0700, efet wrote

[jQuery] Re: help needed retrieving json data with jquery

2009-08-07 Thread efet
That did not fix. On Aug 7, 12:44 pm, Dhruva Sagar dhruva.sa...@gmail.com wrote: It should be json[i].title as per your json. Thanks Regards, Dhruva Sagar. On Fri, 2009-08-07 at 09:38 -0700, efet wrote

[jQuery] Same code used in all pages but error on one page??

2009-06-26 Thread efet
Everything works fine at our website expect the contact us page. It give a javascript error which also bans visitors submitting the form. Same code used in all pages. Any idea why it gives an error in contact us page? http://www.pangeaadvisors.org http://www.pangeaadvisors.org/contactus.asp

[jQuery] copy addresses

2009-06-25 Thread efet
I am trying to overwrite fields with stored adresses in the following page. But its not working as though not giving any errors. Do you see anything wrong here? $(function() { $(input#copyshipping).click(function(){ if ($(input#copyshipping).is(':checked')) {

[jQuery] multiply 2 input fields on change

2009-06-24 Thread efet
Hi, I have three input fields as UNITPRICE UNITQUANTITY and TOTALPRICE. UNITPRICE's value depends on a product chosen in the preceding tab. Now, I want UNITPRICE UNITQUANTITY fields multiplied and result shown on TOTALPRICE input field. How can I do it?

[jQuery] Re: multiply 2 input fields on change

2009-06-24 Thread efet
Like this? $('#AddProduct').click(function() { var adding = $('div class=column width50input type=text id=PRODUCTNAME name=PRODUCTNAME value= class=width98 /input type=hidden class=PRODUCTID name=PRODUCTID /input type=hidden class=UNITPRICE name=UNITPRICE /smallSearch

[jQuery] Re: what is wrong with this simple load data codes

2009-06-23 Thread efet
It does, but I tried it with uppercase, lowercase none worked. Page is giving me this error when first opened though Error: [Exception... Component is not available nsresult: 0x80040111 (NS_ERROR_NOT_AVAILABLE) location: JS frame ::

[jQuery] Re: what is wrong with this simple load data codes

2009-06-23 Thread efet
Ok that fixed! They index.asp and getir.asp were in a folder so I had to add the folder name in the url section. Something like this: $.post(newfolder/getir.asp?Process=UPS On Jun 23, 2:55 pm, efet efetun...@gmail.com wrote: It does, but I tried it with uppercase, lowercase none worked. Page

[jQuery] autocomplete not working in tabs?

2009-06-21 Thread efet
Hi, I used autocomplete plugin many times in other projects in the past. First time I need to put in in tabs. Its not functioning right. When clicked on a customer name, it needs to fill in the box. Test link (second tab, type any letter):

[jQuery] what is wrong with this simple load data codes

2009-06-21 Thread efet
Hi there, I want to pull data from two input fields add a session (weight) and post them to another file and then pull the returning data. My input fields are: input type=text name=ShippingPostalCode id=ShippingPostalCode class=inputText / input type=text name=ShippingCountry id=ShippingCountry

[jQuery] jQuery Works fine with Firefox and Internet Explorer 8. Not with IE7?

2009-06-17 Thread efet
I developed a website using jQuery plugins in part of it. Couple of visitors visited the website with internet explorer complained that some part of the website does not function at all. I have Internet Explorer 8 installed and I dont know how to downgrade it. Can someone test the website and

[jQuery] using tabs in form fieldset

2009-06-17 Thread efet
Hi, I was wondering if any of you would suggest me how to use the tabs in the following page in a form: http://refinethetaste.com/html/cp/?Section=ordersProcess=AddOrder I use jQuery.Tools tabs in all other pages but I never used it in a form before. script // perform JavaScript after the

[jQuery] jqGrid: jQuery(#list).jqGrid is not a function

2009-06-14 Thread efet
I did not make any changes with directories or codes. I thought I must be missing an include but I have been looking into my codes for hours already but still cant find what causes the error. Please advise! http://refinethetaste.com/html/cp/orders.asp

[jQuery] codes between head section.

2009-06-10 Thread efet
I was asked to add gallery plugin to an existing website. I followed every instruction in gallery plugin's website but I am confused at one point. There are some codes, I need to add between head /head. There problem is, there are some codes there for other plugins already. Can you please tell me

[jQuery] DragDrop Plugin that will allow users drop information on a form to autocomplete

2009-06-04 Thread efet
I have a simple shopping website. Buyers first need to register to purchase an item. While a buyer proceeds through steps shipping payment etc... he is allowed to save some of the information entered for future use. For instance, John Doe puchased xyz item and while proceeding through steps he

[jQuery] [BlockUI Plugin]use links instead of buttons

2009-03-16 Thread efet
At script's demo page, blockui's developer used buttons to activate the scripts. How can I use links instead? I tried it as below but it did not work. a href=javascript:void(0) id=demo5xxx/a html: button id=demo5Run/button js: $(document).ready(function() {

[jQuery] Re: Error: $(#suggest1).autocomplete is not a function

2009-03-05 Thread efet
work because you don't have the autocomplete js file referenced/loaded On Mar 5, 1:19 am, efet efetun...@gmail.com wrote: script type=text/javascript $().ready(function() {   var data = [ {QUERY: $(#QUERY).val(), url:'test.asp? Process=CheckCustomer'} ];   $(#suggest1).autocomplete(data

[jQuery] [autocomplete]Error: $(#suggest1).autocomplete is not a function

2009-03-04 Thread efet
script type=text/javascript $().ready(function() { var data = [ {QUERY: $(#QUERY).val(), url:'test.asp? Process=CheckCustomer'} ]; $(#suggest1).autocomplete(data); }); /script div class=required label for=Test...Test.../label input

[jQuery] converting my codes to JQuery

2009-02-05 Thread efet
I use ajax suggest at my website with the following codes. I tried converting them to JQuery after reading few tutorials. I get showHint () is not defned error. What is wrong where? Basically, I submit to test.asp?Process=CheckCustomer then I get results as xxx, xxx2, xxx3... function

[jQuery] getElementById with ajax

2009-01-31 Thread efet
This will be my first application with using jQuery library, so I might not make sense. I will try to explain what I want to do as simple as possible. I have two web pages, index.asp, ship.asp. index.asp: I have a form with ReceiverPostalCode and ReceiverCountry inputs. ship.asp: this is where