[jQuery] Share link in ajax.

2009-11-10 Thread Rupak
Hi all, I have a "Share"(share this) link in a page . If I call this page using ajax then "share" link was missing. But if i run this page directly, It works perfectly. Can any body tell me why this happen. Thanks in advance

[jQuery] Re: Copy content from one field to another

2009-10-20 Thread rupak mandal
function doCopy(){ if($('#same').is(':checked')) { $("#billing_first_name").attr("value", $('#shiping_first_name').val()); } else { $("#billing_first_name").attr("value",""); } } > I have another question related to this. How can I clear the fields i

[jQuery] Re: Copy content from one field to another

2009-10-20 Thread rupak mandal
sorry change the id of lastname of shiping information to "shiping_first_name" Thanks On Tue, Oct 20, 2009 at 6:04 PM, rupak mandal wrote: > > change the id of lastname of billing information to "billing_last_name" > > Thanks > > > On Tue,

[jQuery] Re: Copy content from one field to another

2009-10-20 Thread rupak mandal
change the id of lastname of billing information to "billing_last_name" Thanks On Tue, Oct 20, 2009 at 5:44 PM, ReynierPM wrote: > > rupak mandal wrote: > >> Try this >> >> $("#billing_first_name1").attr("value",$("#shiping

[jQuery] Re: password initial value without masking "****"

2009-10-20 Thread rupak mandal
either you ca maintain two input element (like facebook), or make an image of "password"and set the image to textbox background, on focus or click just remove the background-image. On Tue, Oct 20, 2009 at 2:09 PM, Bi Jing wrote: > For now, our project use two input elements to implement this, w

[jQuery] Re: How to get active image centeres in jCarousel?

2009-10-20 Thread rupak mandal
jQuery(document).ready(function() { jQuery('#mycarousel').jcarousel({ start: 3 }); }); http://sorgalla.com/projects/jcarousel/examples/static_start.html Thanks On Tue, Oct 20, 2009 at 8:49 AM, Ghprod wrote: > > Hi, > > i use jcarousel in one of my project. As we know active i

[jQuery] Re: superfish navbar - how do I center the whole bar?

2009-10-20 Thread rupak mandal
Put the ul inside a div. I think it will work On Tue, Oct 20, 2009 at 9:05 AM, Shawn wrote: > > I'm using a navbar with superfish. I simply put my menu list inside a > wrapper so the markup looks like this: > > > > ... > ... > ... > > > > > now I want to make the navbar-wrapper 100% of

[jQuery] Re: Copy content from one field to another

2009-10-20 Thread rupak mandal
Try this $("#billing_first_name1").attr("value",$("#shiping_first_name").val()) $("#billing_last_name1").attr("value",$("#shiping_last_name").val()) Thanks On Tue, Oct 20, 2009 at 8:55 AM, Ghprod wrote: > > Hi ... if u work with newer version of jquery, maybe u'll change $ > into jQuery

[jQuery] Re: Get url from iframe

2009-10-19 Thread rupak mandal
no because after clicking on any search link, it was redirect to new web page. But src remains same. On Mon, Oct 19, 2009 at 9:45 PM, brian wrote: > > I believe you can get it from the "src" attirbute. > > On Mon, Oct 19, 2009 at 7:37 AM, Rupak wrote: > > > >

[jQuery] Get url from iframe

2009-10-19 Thread Rupak
Hi all, I have an ifram in a page. iframe contains google.com (google search). from there if the user search for a "key word", i and click on a link.Is there a way to get the "url" of newly open page inside the iframe. Plz help me.. thanks Rupak

[jQuery] Re: show/hide with embed

2009-10-16 Thread rupak mandal
if the problem is reload then add "return false" at the end or the function On Fri, Oct 16, 2009 at 6:02 PM, ngreenwood6 wrote: > > I tried doing that as well and it still does the same thing. It must > be changing the display that makes it reload. To test all you have to > do is create a div wi

[jQuery] Re: Superfish - Drop Down not displaying

2009-10-15 Thread rupak mandal
Increase the hight of "#pillmenu" to 87px or as per your requirement. In "template.css " Thanks Rupak On Thu, Oct 15, 2009 at 5:47 PM, Superfish Query wrote: > > Hello, > > I am using the Superfish Module and have been able to successfully > install and use

[jQuery] Urgent "&" problem in wordpress

2009-10-15 Thread Rupak
Hi all I am new to wordpress.I am using $.ajax $.ajax({ type: "POST", url: "some.php", data: "name=John&location=Boston", success: function(msg){ alert( "Data Saved: " + msg ); } }); But it will convert "&" into "&". can any one tell me how to fixed this.

[jQuery] Re: Superfish menu problem.

2009-09-16 Thread rupak mandal
1) Remove position:relative from ".main" class constant.css (not tested). 2)To remove the back ground, remove back ground from sf-menu #current and sf-menu .active in superfish.css 3)Remove background from "menu li" class template.css. Thanks Rupak On Thu, Sep 17, 2009 a

[jQuery] Re: "Object doesn't support this property or method" in IE

2009-09-16 Thread rupak mandal
I have face similar problem . Just check is there any html open or close tag missing in "provStats.php". Thanks Rupak On Wed, Sep 16, 2009 at 12:16 PM, Ricardo wrote: > > Hmm. No idea why it doesn't work in IE, but here are some general > observations: > > You d

[jQuery] Re: Superfish menu problem.

2009-09-15 Thread rupak mandal
".sf-menu a" && "sf-menu li" class according to requirement ... I think this will resolve your problem. Thanks Rupak On Wed, Sep 16, 2009 at 11:04 AM, sholland wrote: > > Here aree the CSS styles being applied to that menu position by the

[jQuery] Re: Getting value from fields that compose an array?

2009-09-11 Thread rupak mandal
Try this var values=$('input[name="item[]"]').map(function() { return $(this).val() } ).get(); Thanks Rupak On Fri, Sep 11, 2009 at 3:04 PM, ximo wallas wrote: > Hello! > I have a form with some fields like this: > > > > > > > How can

[jQuery] Re: IE7 submenu display problem

2009-09-10 Thread rupak mandal
hi, This is not a problem of z-index, this is due to position:relative. If you remove the position:relative absolute from #main-content, I think it will work. Thanks Rupak On Thu, Sep 10, 2009 at 2:02 AM, Sajuuk wrote: > > I've got the same problem on a site I am working on ri

[jQuery] Re: HTML code inside script tag, how access to it with DOM???

2009-09-09 Thread rupak mandal
Div is outside the HTML DOM. After creating the div element you have to append the div into the body. thanks Rupak On Wed, Sep 9, 2009 at 3:38 PM, Mariano wrote: > > I have an HTML page that looks like this: > > > > > > <d

[jQuery] Re: Image-Load

2009-09-09 Thread rupak mandal
use $(window).load. I think it will work Thanks Rupak On Wed, Sep 9, 2009 at 3:13 PM, binarious wrote: > > Hey, > I have an alert(); in a document.ready function. Sometimes the alert > appears after my image on this page is loaded and sometimes it appears > before. What can

[jQuery] Animation problem with transparent bachground in IE7

2009-09-08 Thread Rupak
x27;0','display' : 'block'}); $("#alldivpopup").animate({opacity: 1},500); Is there any other alternative. To display a div like fadeIn .I have already tried faidIn, but problem remain same please help me. Thanks Rupak

[jQuery] Re: Fade-in problem in IE7(urgent)

2009-09-08 Thread rupak mandal
Thanks all ti work's. On Tue, Sep 8, 2009 at 7:44 PM, Charlie wrote: > the fade functions use animate() I believe. > > Try animate function and animate your opacity > > > rupak mandal wrote: > > Initially div display property is set to none. FadeIn will handle

[jQuery] Re: click a button returned by ajax

2009-09-08 Thread rupak mandal
Hi carlos try to use http://docs.jquery.com/Events/live thanks Rupak On Tue, Sep 8, 2009 at 8:54 PM, Carlos Santos wrote: > > I have a button that do appear on my page through a post with jquery: > > $.post( >'more_item.php',{ >

[jQuery] Re: Fade-in problem in IE7(urgent)

2009-09-08 Thread rupak mandal
Initially div display property is set to none. FadeIn will handle display property but fadeTo will not. Any other suggestion Thanks Rupak On Tue, Sep 8, 2009 at 5:55 PM, Nick Fitzsimons wrote: > > 2009/9/8 rupak mandal : > > hi nick, > > Thanks for quick reply. > >

[jQuery] Re: Fade-in problem in IE7(urgent)

2009-09-08 Thread rupak mandal
$(document).ready(function(){ $(".div1").fadeIn(5000); }) please test this code in FF & IE and you will get the diffrence. opacity remains in FF but not in IE Thanks Rupak On Tue, Sep 8, 2009 at 5:35 PM, Nick Fitzsimons wrote: > > 2009/9/8 Rupak : > > http:/

[jQuery] Fade-in problem in IE7(urgent)

2009-09-08 Thread Rupak
ight:200px; filter:alpha(opacity=50); opacity:.5; display:none; } $(document).ready(function(){ $(".div1").fadeIn(5000); }) Thanks Rupak

[jQuery] Re: Hidden div height width

2009-09-04 Thread rupak mandal
y setting his > absolute position to top and left negative values, or (probably > better?) using z-index property. > hope it's useful! :) > > On 4 Set, 12:04, Cold Flame wrote: > > Hi Rupak, > > > > if div is hidden using css display:none then you can'

[jQuery] Hidden div height width

2009-09-04 Thread Rupak
Hi all Can any one tell me is it possible to get the height and width of a hidden div. I have to apply animation to a hidden div. But is don't know how to do this. Thanks Rupak

[jQuery] Re: Problems with minDate on datepicker not allowing before 1999.

2009-09-02 Thread rupak mandal
hi joe, You have to specify the "year range" according to your requirement .By default it is yearRange: '-10:+10' Thanks Rupak On Wed, Sep 2, 2009 at 8:34 PM, hoe`` wrote: > > If I do something like, minDate: new Date(1930, 1-1, 14) > or, minDate: '-70Y'

[jQuery] Re: Accessing Elements after adding them with Append

2009-09-02 Thread rupak mandal
t;div#categories ul li input").unbind('click',alertfunction); //append element $("div#categories ul li input").bind('click',alertfunction); function alertfunction() { alert("clicked"); } Thanks Rupak On Wed, Sep 2, 2009 at 2:21 PM, Daniel wrote: &

[jQuery] How to detect window is scroll or not using window.scrollTo()

2009-09-01 Thread Rupak
Hi all, Is there a way to detect whether window is scroll or not .I am using window.scrollTo() function. Thanks Rupak

[jQuery] Re: (autocomplete) Is it possible to cache the empty results ?

2009-08-31 Thread rupak mandal
Hi , you have to make a little changes in autocomplete.js Search for "*if (data && data.length*)" condition which is inside "request" function. Add this code before the *if * condition if(data) data.length=0; Thanks Rupak On Mon, Aug 31, 2009 at 3:36 PM,

[jQuery] Re: input color - default color

2009-08-28 Thread rupak mandal
Hi You may try this $('#first_input').css('background-color', 'transparent'); On Fri, Aug 28, 2009 at 5:00 PM, dziobacz wrote: > > interesting - Your solution works in Firefox and in Chrome but it > doesn't work in IE 8 and Opera - in these browser background color > inputs is still red - hm..

[jQuery] Re: Hover does not stop

2009-08-28 Thread rupak mandal
Try this $(function(){ $('#navigation').hover( function() { $(this).stop().animate({left: '-210'}, 'slow');}, function() { $(this).stop().animate({left: '0'}, 'slow');} ); }); I think that's work On Fri, Aug

[jQuery] Re: Hover does not stop

2009-08-28 Thread rupak mandal
hi, what I have getting is that hover function is call multiple time till the mouse pointer is inside the div area. May be you try onmouseover and onmouseout. As suggested by paolo. On Fri, Aug 28, 2009 at 4:36 PM, Paolo Chiodi wrote: > > maybe the hover is generated more than once while it is s

[jQuery] Re: how to access the value of multiple textbox of same name.

2009-08-27 Thread rupak mandal
thanks lanxiazhi., It works On Wed, Aug 26, 2009 at 11:24 PM, lanxiazhi wrote: > var values=$('input[name="location[]"]').map(function() > { > return $(this).val() > } > ).get(); > this will return an array of values. > 2009/8/27 Rupak > > >

[jQuery] how to access the value of multiple textbox of same name.

2009-08-27 Thread Rupak
Hi all. I have n number of text box (n may be any number) with same name. And I want to access the value of all the text box of that name. Ex-: or is there any other way to access the value of the text box. Either by class or any othe property Thanks Rupak

[jQuery] Re: IE Superfish z-indexing problem

2009-08-26 Thread rupak mandal
Hi, This problem is due to "position relative" in "sf-menu ul" class . If you change the position to absolute i think it will work. thanks Rupak On Wed, Aug 26, 2009 at 5:17 AM, mr.amazing wrote: > > I know, I know, this is a common problem. Well, after trying ever

[jQuery] Re: Datepicker issue

2009-08-26 Thread rupak mandal
t;+dat+"/"+myday.getFullYear()) }); }); but the better option is that restrict the user to enter date manually. Made the datepicker text box readonly. Thanks Rupak On Wed, Aug 26, 2009 at 3:25 AM, sak wrote: > > Hi there > > I have a problem with the date picker a

[jQuery] Re: How to cancel an AJAX request?

2009-08-25 Thread rupak mandal
Hi Hector, you have to use abort function. go through this link http://www.protofunc.com/scripts/jquery/ajaxManager/ Thanks Rupak On Wed, Aug 26, 2009 at 2:25 AM, Hector Virgen wrote: > Hello, > Is there a way to stop or cancel an ajax request on demand, similar to > pressing &quo

[jQuery] Re: hide() does not hide span in IE, but does in FF

2009-08-04 Thread rupak mandal
hi, if you use div instead of span I think it will work. On Tue, Aug 4, 2009 at 8:25 PM, msmaeda wrote: > > Hi, > > With the code below, I am having an issue that only seems to occur in > IE. The issue is that the "payer_pane" span should be hidden unless > the "NEW" option is selected in the "

[jQuery] Re: Superfish vertical menu, sub-menu item overlap problem

2009-08-04 Thread rupak mandal
Hi BenI think the problem is off using position relative, change in css .menu li:hover { visibility: inherit; position:relative; } On Wed, Aug 5, 2009 at 3:16 AM, Ben wrote: > > In an ideal Superfish vertical menu setup, you match the width of the > first with the offset of the second, so

[jQuery] Re: Google Maps inside jqModal

2009-08-04 Thread rupak mandal
Hi anshu you have to call "initialize()" function after the initialization of "dialog" div. Basically what's happen hear calling of google map api before the initlalization of "map_canvas" div. Better option is to use "SettTimeout" function instead of "onload" . $().ready(function() {

[jQuery] Re: Check if element is shown with show()

2009-08-04 Thread rupak mandal
If you assign same class to all the paragraph. so on clicking on menu you have to hide to the class element and show the particular paragraph. Home About Contact Gallery :: : : :: : : $(document).ready(function{ f

[jQuery] Re: Check if element is shown with show()

2009-08-03 Thread rupak mandal
Hi Stefan What i am getting is that, on click you have to display a paragraph and hide another. Home About Contact Gallery $(.changepara).click(function(){$(.hangepara).hide(); $("#"+this.id).show(); }) }) I think this code will help you. On Tue, Aug 4, 2009 at 5:29 AM, Stefa

[jQuery] Re: Superfish z-index problem with googlemap in IE

2009-08-03 Thread rupak mandal
Thanks for the suggestion.I got the solution.We have to just change the superfish.css .sf-menu li:hover { visibility: inherit; /* fixes IE7 'sticky bug' */ position:relative; z-index:999; } and it will work. On Mon, Aug 3, 2009 at 11:38 AM, CanisVoriCanis wrote: > > I just had a simila

[jQuery] Re: Superfish z-index problem with googlemap in IE

2009-08-01 Thread rupak mandal
Thanks for the responce. On Sat, Aug 1, 2009 at 7:36 PM, Boris Anthony wrote: > > Having the same problem. > From what I can gather, Superfish in IE7 goes behind any element that > has "position:relative;" declared, and it just so happens that > embedded Google maps seem to require it's container

[jQuery] Re: Does IE support live?

2009-07-31 Thread rupak mandal
hi David, you have to bind "jump" in load callback function. $(function() { $.ajaxSetup({ cache: false }); $('#btn').click(function() { $('div:first').load('b.html',function(){loadCallback();}); }); }); function loadCallback() {

[jQuery] Re: Is it possible to hide the destination URL of a link?

2009-07-30 Thread rupak mandal
ven though it seems useless because the id > deleted is still shown on the page, again - goes away after the manual F5). > I have just tried a lot of things using .load in the success, .ajax, .post > etc etc, but I have the same issue. > > Thanks, > Anoop > > > > On

[jQuery] Re: Is it possible to hide the destination URL of a link?

2009-07-30 Thread rupak mandal
Hi anoop I think you can store the required data in session. On Fri, Jul 31, 2009 at 5:19 AM, Anoop kumar V wrote: > I have a menu, on which is a delete link. The URL of the link is quite > plain: http://mysite.com?delete=true&id=123 > (quite obvious I think that the request is to delete the id=

[jQuery] Re: call ajax on ENTER key press

2009-07-30 Thread rupak mandal
Hi bharani I think this code will work for you $(document).ready(function() { $('#movie_name').keyup(function(e) { if(e.keyCode == 13) { //your code } }) }) On Fri, Jul 31, 2009 at 9:44 AM, Mohd.Tareq wrote: > Hi bharani kumar, * > * > *Its simple one you need to write onKey

[jQuery] Re: Tabs: page jumps to top when tab changes

2009-07-29 Thread rupak mandal
Hi, if you remove the "jquery.history_remote.pack.js" then I think it works properly. On Wed, Jul 29, 2009 at 5:50 PM, chris_huh wrote: > > At the moment my page will jump to the top (because of the #) whenever > a new tab is clicked or when it automatically rotates to one. > > Is there a way to

[jQuery] Re: Draggable problem

2009-07-29 Thread rupak mandal
Hi markos, i think that the style of the div is attached to its id (#drag) that's why it will disappear after dragging. Just attach the style by class name. or replace the html file. On Wed, Jul 29, 2009 at 2:49 PM, Marcos Placona wrote: > > Hi Rupak, thank you very much for that,Alt

[jQuery] Re: Draggable problem

2009-07-28 Thread rupak mandal
Hi , replace the javascript cod and add "dragafter" class in css //javascript $(document).ready(function(){ //Counter counter = 1 //Make element draggable $("#drag").draggable({ helper:'clone', start: function(e, ui){ $(ui.

[jQuery] Re: Autocomplete cache problem ( Urgent )

2009-07-28 Thread rupak mandal
Hi , you have to make a little changes in autocomplete.js Search for "*if (data && data.length*)" condition which is inside "request" function. Add this code before the *if * condition if(data) data.length=0; On Tue, Jul 28, 2009 at 1:29 PM, Vivek wrote: > > Hi, > > I am using autocomple