[jQuery] Re: Form is always submitting

2009-09-04 Thread Bluesapphire
value of type attribute to button instead of submit the form will not submit. Like if you want to make an ajax call on send message button. i.e input type=button class=button value=Send Message To Shipper name=smts id=smts/ Regards Umair Shahid On Sep 4, 11:03 am, Bluesapphire ahmadsaa

[jQuery] Form is always submitting

2009-09-03 Thread Bluesapphire
Hi! Kindly visit following link: http://www.articlecon.com/sitesdemo/ship/viewquote.php?mid=1 When I click 'Send Message To Shipper' button, Form is submitted, where as I placed following jQuery code to stop submission. script type=text/javascript jQuery(document).ready(function(){

[jQuery] Orange Color is not Visible in Slider Range

2009-08-20 Thread Bluesapphire
Hi! Iam newbie to jQuery UI. Kindly visit following link : http://vibersol.com/ajaxsearch/ There is slider (with ranges) on top. I just used all default files and settings. What I am doing wrong that Orange color is not visible between range. Can some one guide me how can Orange Color

[jQuery] How to Get Retuned GeoLocation

2009-08-13 Thread Bluesapphire
Hi! Iam using following JQuery Code: /***/ script type=text/javascript jQuery(document).ready(function(){ jQuery.post( 'http://api.hostip.info/country.php'

[jQuery] How to change Date Format in Jquery Plugin

2009-06-07 Thread Bluesapphire
Hi! Iam using JQuery plugin [DATE PICKER] found from (http:// www.kelvinluck.com/). Its default date format is d/m/Y. Can some one guide me how can I change its format to m/d/Y Thanks in advance

[jQuery] JQuery DatePicker Plugin

2009-06-05 Thread Bluesapphire
Hi! Iam using JQuery DatePicker Plugin , created by Kelvin Luck (http:// www.kelvinluck.com/). Plugins default format is d/m/Y. Can someone guide me how to change its default format to US Date format (m/d/Y). Thanks in advance

[jQuery] How to reload page after specific time period

2009-03-11 Thread Bluesapphire
Hi! How can I reload page [05 seconds gap] after successful ajax reply from server. Like youtube shows SUCCESS message and then whole page is refreshed after a while. Thanks in advance

[jQuery] How to get and send AutoComplete input field value

2009-02-27 Thread Bluesapphire
Hi! Kindly visit following link: http://vibersol.com/sitesdemo/shipping/admin/addquotation.php There you can see 'MAKE' and 'MODEL' columns. I have placed autocomplete on these columns. I want to make 'MODEL' column's autocomplete should be dependent on value of 'MAKE' column. I want 'TYPE'

[jQuery] Multiselect listbox

2009-02-25 Thread Bluesapphire
Hi! How can i check that atleast one option is selected in multiselect listbox. How can this be done through JQUERY. Thanks in advance

[jQuery] Re: Multiselect listbox

2009-02-25 Thread Bluesapphire
:55 am, Bluesapphire michealg...@gmail.com wrote: Hi!     How can i check that atleast one option is selected in multiselect listbox. How can this be done through JQUERY. Thanks in advance- Hide quoted text - - Show quoted text -

[jQuery] Re: Multiselect listbox

2009-02-25 Thread Bluesapphire
that with an ID (#zonelocation). That will not work. Use a class instead. Second: Depending on the type of your checkboxes and your DOCTYPE you might need to change the attr('checked') == 'checked' according to your needs. I only used this as a placeholder. On Feb 25, 11:26 am, Bluesapphire michealg

[jQuery] Re: Multiselect listbox

2009-02-25 Thread Bluesapphire
Thanks alot for your guidance. It really worked. On Feb 25, 5:07 pm, RobG rg...@iinet.net.au wrote: On Feb 25, 6:55 pm, Bluesapphire michealg...@gmail.com wrote: Hi!     How can i check that atleast one option is selected in multiselect listbox. How can this be done through JQUERY. I

[jQuery] JQuery Autocomplete strange behaviour

2009-02-17 Thread Bluesapphire
Hi! Kindly visit following link: http://vibersol.com/sitesdemo/shipping/admin/addquotation.php Then add form fields dynamically [by clicking GREEN icon]. And fill these fields. Iam seeing strange problem. When I click in 'MAKE' textbox, JQuery autocomplete works fine and gets values from PHP

[jQuery] JQuery: Dynamically added fields values are not submitted

2009-02-16 Thread Bluesapphire
Hi! Kindly visit following link: http://vibersol.com/sitesdemo/shipping/admin/addquotation.php Then add form fields dynamically [by clicking GREEN icon]. And fill these fields. After that submit the form. I checked in FireBug that these values of dynamically added fields are not submitted by

[jQuery] TableSorter plugin is not working in IE7

2009-02-09 Thread Bluesapphire
Hi! Kindly visit following link: http://vibersol.com/sitesdemo/shipping/admin/continent.php Table sorter plugin works fine in FireFox, but in IE7 this plugin doesn't work. Can some one guide me where and how to rectify this problem in my code, so that plugin begin to work in IE7. Thanks in

[jQuery] 'JQuery' tag is not working at all

2009-02-01 Thread Bluesapphire
Hi! Iam using JQuery 1.3. $ tag is working fine. But when I try to use jquery plugin'jqGrid'. It gives error. As I think, this plugin is using 'JQuery' and my system is not recognising this tag [JQuery]. Following is the error, generated by Firebug. jQuery(modwin).jqDrag is not a function

[jQuery] Re: 'JQuery' tag is not working at all

2009-02-01 Thread Bluesapphire
Hi! This is continuation of my previous message. I also get following error in FireBug. JQuery(document).ready(function(){ JQuery is not defined http://localhost/main/vibersol/shipping/admin/country.php Line 132 Thanks On Feb 1, 1:32 pm, Bluesapphire michealg...@gmail.com

[jQuery] How to decode Json value through Jquery

2009-01-28 Thread Bluesapphire
Hi! I am novice to Jquery. Iam getting following Json output from PHP file : {jval:{wine:3,sugar:4,lemon:22}} how can I decode/get these Json values in Jquery. Thanks in advance

[jQuery] jQuery.noConflict() is not working

2009-01-12 Thread Bluesapphire
Hi! I am using following things in separate JS file: a- var dom = {}; dom.query = jQuery.noConflict(true); b- var jQ = jQuery.noConflict(); c- jQuery.noConflict(); Neither of above work and Firbug gives error. But $ works perfectly. Can some one guide me where I am

[jQuery] Correct me!

2009-01-12 Thread Bluesapphire
Hi! I have used following things in separate JS file so no conflict will be there between JQUERY and other JS frameworks. a- var dom = {}; dom.query = jQuery.noConflict(true); b- var jQ = jQuery.noConflict(); c- jQuery.noConflict(); But when I used jQ or others, FireBug gives error.