[jQuery] Re: Draggable problem

2009-07-29 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){

[jQuery] jQuery slides causing CSS/Display issues in IE7 8

2009-07-29 Thread iceangel89
in the menu here - http://iceangel89.110mb.com/templates/em/1_index.html, the slides cause problems in IE7 8

[jQuery] Re: jQuery slides causing CSS/Display issues in IE7 8

2009-07-29 Thread iceangel89
... how do i post images here? i cant even put a link to image shack? i keep getting We were unable to post your message i guess u need to see my post @ stack overflow http://stackoverflow.com/questions/1194812/css-ie7-8-issues/1195960#1195960 for the images. or test in IE urself... sry

[jQuery] Re: jQuery slides causing CSS/Display issues in IE7 8

2009-07-29 Thread iceangel89
in IE7, the sliding menu seems to not show, until i move the mouse abit.

[jQuery] Re: jQuery slides causing CSS/Display issues in IE7 8

2009-07-29 Thread iceangel89
in IE8, after a menu slides up, the margin seems to be removed i cant even edit a post?

[jQuery] Slide Hover Menu

2009-07-29 Thread Zbigniew Karski
Hi , I have simple problem . Two Div's - one is named #naviHover and second is holder for menu #nav. i have this script in document ready : $(#nav).hide(); $('#naviHover').hover( function() { $(#nav).show().stop(); }, function() { $(#nav).hide().stop(); } ); Problem is that it jerks

[jQuery] Re: small problem

2009-07-29 Thread Sean Giles
It works fine for me in FF 3.5.1 and Safari 4.0.2 on Mac On Wed, Jul 29, 2009 at 1:55 AM, GaVrA ga...@crtaci.info wrote: bump On Jul 26, 2:18 pm, GaVrA ga...@crtaci.info wrote: Maybe it has something to do with the fact i am using Windows 7? On Jul 26, 12:27 pm, tain

[jQuery] Block Closes Abruptly With animate(...) Function

2009-07-29 Thread TH Lim
Hi, Earlier I found that treepluginview, http://groups.google.com/group/jquery-en/browse_thread/thread/773d6c6307eff840/ec8062b88f745e60?lnk=gstq=treeview+collaspse#ec8062b88f745e60, didn't work well with IE7 or rather IE8 with IE7 mode. I traced it thru and the problem lies with animate(...)

[jQuery] jqm and livequery issue

2009-07-29 Thread jjshell
Hi, Please consider the code below. It should open a modal everytime a link of a given class is clicked. But... it does not. //get the url of the link clicked var url; $('a.edit').livequery('click',function(){ url= $(this).attr('href'); }); //initiate the modal box $('#modal-test').jqm({

[jQuery] Difficulties with traversing

2009-07-29 Thread knal
Hi there, I'm trying to fake a hover effect. The markup (roughly) looks like this: [code] div class=left_col h2a href=/work/Portfolio/a/h2 div class=project a href=/work/folio.htmlimg src=folio.jpg alt=View folio. width=230 height=110 //a h1a href=/work/folio.htmlFolio

[jQuery] Re: jqm and livequery issue

2009-07-29 Thread Liam Potter
uncomment the return false jjshell wrote: Hi, Please consider the code below. It should open a modal everytime a link of a given class is clicked. But... it does not. //get the url of the link clicked var url; $('a.edit').livequery('click',function(){ url= $(this).attr('href'); });

[jQuery] Re: Advice needed on jQuery page to be built

2009-07-29 Thread Liam Potter
Hi gnet, I've not really done much with arrays, so this is more theory but you should be able to build upon it. You will need a separate file, that you will be sending the ajax requests to, and the html it returns should be printed in the divs using the success callback on the ajax method.

[jQuery] Re: Draggable problem

2009-07-29 Thread Marcos Placona
Hi Rupak, thank you very much for that,Although I did exactly what you said, it still doesn't work very well. It does create new items and gives them ids and everything, but the items simply don't stick to the location, and simply disappear. Here's how it is now:

[jQuery] Re: Advice needed on jQuery page to be built

2009-07-29 Thread Liam Potter
just seen Brian's solution, which is similar but cleaner, don't know why I didn't think of just leaving the data in the href. Liam Potter wrote: Hi gnet, I've not really done much with arrays, so this is more theory but you should be able to build upon it. You will need a separate file,

[jQuery] Re: Html images not displayed within a jQuery load - Help needed!

2009-07-29 Thread eelziere
Hi, I am currently using IE7 not IE8. With IE7: - the ajax loading image is displayed - the other images are not With Firefox 3.5: - the ajax loading image is NOT displayed - the other images ARE! Any idea? I tried to replace the jQuery load with a get, but it does not help... On 27

[jQuery] can i use .load to return HTML but not inject in to dom?

2009-07-29 Thread robing
I don't know if this is possible or not but i would like to use the .load method to return the contents of a file but not inject the code in to the dom because i want to use .replaceWith ( returnedLoadData ). here is what i have tried so far and i can return the data to e but the return false

[jQuery] Re: can i use .load to return HTML but not inject in to dom?

2009-07-29 Thread Liam Potter
$.load(../+myModule+/+navTitle+/folders/index.php, function(e){ console.log(e); $('#folders').replaceWith(e); return false; }); try that robing wrote: I don't know if this is possible or not but i would like to use the .load method to return the

[jQuery] Re: Draggable problem

2009-07-29 Thread Marcos Placona
OK, so I've made a few changes to it, and now it moves and stays on the right place, but when i try to move it again, it moves only once more, and messes up with the ID's, i think it's because the counter is still incrementing. Could you please give me some light here?

[jQuery] Re: can i use .load to return HTML but not inject in to dom?

2009-07-29 Thread robing
Hi Liam, i got $.load is not a function, any other suggestions?? On Jul 29, 9:57 pm, Liam Potter radioactiv...@gmail.com wrote:        $.load(../+myModule+/+navTitle+/folders/index.php, function(e){             console.log(e);             $('#folders').replaceWith(e);             return

[jQuery] Re: can i use .load to return HTML but not inject in to dom?

2009-07-29 Thread Liam Potter
then I'd say use the ajax function. http://docs.jquery.com/Ajax/jQuery.ajax#options robing wrote: Hi Liam, i got $.load is not a function, any other suggestions?? On Jul 29, 9:57 pm, Liam Potter radioactiv...@gmail.com wrote: $.load(../+myModule+/+navTitle+/folders/index.php,

[jQuery] Re: can i use .load to return HTML but not inject in to dom?

2009-07-29 Thread robing
Thanks Donny, $.get(../+myModule+/+navTitle+/folders/index.php, function (data){ $('#folders').replaceWith(data); //return false; },html); works for me. On Jul 29, 10:15 pm, Donny Kurnia donnykur...@gmail.com wrote: robing wrote: I don't know if this

[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 marcos.plac...@gmail.comwrote: Hi Rupak, thank you very much

[jQuery] Re: can i use .load to return HTML but not inject in to dom?

2009-07-29 Thread Donny Kurnia
robing wrote: I don't know if this is possible or not but i would like to use the .load method to return the contents of a file but not inject the code in to the dom because i want to use .replaceWith ( returnedLoadData ). here is what i have tried so far and i can return the data to e but the

[jQuery] Re: small problem

2009-07-29 Thread Chandan Luthra
Works fine for me in FF 3.5.1 and flock 2.5 on ubuntu Thanks, Chandan Luthra site: www.intelligrape.com blog: www.intelligrape.com/blog On Wed, Jul 29, 2009 at 13:16, Sean Giles sean.sgi...@googlemail.comwrote: It works fine for me in FF 3.5.1 and Safari 4.0.2 on Mac On Wed, Jul 29,

[jQuery] Re: can i use .load to return HTML but not inject in to dom?

2009-07-29 Thread Liam Byrne
Surely $(#folders).replaceWith will actually do the - er - replacing ? L Liam Potter wrote: $.load(../+myModule+/+navTitle+/folders/index.php, function(e){ console.log(e); $('#folders').replaceWith(e); return false; }); try that robing

[jQuery] Re: can i use .load to return HTML but not inject in to dom?

2009-07-29 Thread Liam Byrne
Try using $.get - it'll return the data From http://docs.jquery.com/Ajax/load : .load : Load HTML from a remote file and inject it into the DOM. HOWEVER : .get : Load a remote page using an HTTP GET request. $.get(../+myModule+/+navTitle+/folders/index.php, { OPTIONAL PARAMETERS HERE },

[jQuery] Re: posting onclick a datepicker value

2009-07-29 Thread Ca-Phun Ung
Hi, I notice you have the TransactionOrderItemID info in the element ID aswell. So why not use that instead of passing it to the onClick handler? Also the changeStartDate looks redundant, here's an example: http://jsbin.com/ibebi On Tue, Jul 28, 2009 at 9:14 PM, Natkeeran L.K.

[jQuery] Re: Draggable problem

2009-07-29 Thread Marcos Placona
Hi Rupak, I've done what you said, and although it now works better, it still falls into being only able to drag the already dropped object once. So if you drag it first time, and try to drag it again, it will only happen once, and if you add more objects it messes up, as you can see here:

[jQuery] Re: small problem

2009-07-29 Thread Jules
Using Vista 64 FF3.0.1 the letters change to yellow as mentioned. Works fine in IE 8 On Jul 26, 7:40 pm, GaVrA ga...@crtaci.info wrote: Hmm check out my site: http://www.crtaci.info/ on top-right position i have search field. When you move your mouse over there small text shows up that

[jQuery] Re: Make width of inner div equal outer

2009-07-29 Thread Paul Collins
Hi all, I haven't received a response, so I've put up a test page to make it a bit more clear. http://paulcollinslondon.com/test/test.html Basically, the second level navigation is showing when the page loads, because the parent list item for ABOUT US has a class of selected. When you mouseover

[jQuery] Re: Draggable problem

2009-07-29 Thread Marcos Placona
Almost works now, except that when you add a new item, all the existing objects have their ids changed to the newly added item's name. Can you spot anything weird on it? Cheers On Jul 29, 12:10 pm, Marcos Placona marcos.plac...@gmail.com wrote: Hi Rupak, I've done what you said, and although

[jQuery] Re: Advice needed on jQuery page to be built

2009-07-29 Thread gnetcon
Brian / Liam: Thanks for the help. I was thinking this is what I needed to do. The guidance is greatly appreciated! Joel brian-263 wrote: Let's say that you want to add the click handler to all anchors in the 1st pane: $('#pane1 a').click(function() { $.ajax({

[jQuery] Re: Image Map Coordinates with pop up or tool tip???

2009-07-29 Thread snick_hill
I found this pretty tooltip plugin http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ works for me. I can customize the tooptip with CSS and also change the design of the tooltip box. On Jul 29, 2:31 am, Luh Hooo Zer anthonynori...@gmail.com wrote: i have a circular image... with pie

[jQuery] RE: Firefox 3.5 Preloading Issue

2009-07-29 Thread Adam Bagarella
I'm not sure if this is the best place to post this question, but I'm using jquery for this process and so I figured it was a start. I have a form that submits via AJAX and jquery. When the user clicks the submit button, the button is replaced with an animated GIF while it loads. I preload the

[jQuery] Superfish: some floated elements show through the menu

2009-07-29 Thread Alex
Hi, hopefully someone can help with this problem - see http://www.cosmiccupiddating.com If you hover over help in the menu in Internet Explorer, you can see the Advanced Search link does not disappear when the menu drops down. This wouldn't be so bad but it happens on other pages too, especially

[jQuery] validation

2009-07-29 Thread text
I am using jquery.validate.js by bassistance, I have some question regarding the date validation. I am developing a website that has registration, what I want is to filter the age of the user who wants to register, allowing only 13 years old and above. If the user typed a date that is in the

[jQuery] jquery Superfish and jquery corner

2009-07-29 Thread S03S61
Hi, I am using the two jquery plugins jquery superfish nav-bar style menus and jquery corner for my course project which is due on this friday. I am having tough time with these, I have been working on these for last 3 days and I couldn't figure out the solutions to the following questions.

[jQuery] Cycle - Problem setting a class for aditional slides

2009-07-29 Thread perfidus
Hi there, I will try to post a question here, but I don't know if it will work because even though I haven't checked the message is in HTML format checkbox it continues rendering the text as HTML so it is getting harder to post some code in here... I'm using cycle in a personal project and I

[jQuery] Elements are still droppable while they're in the hidden part of a scrollable container

2009-07-29 Thread Romain
Hi guys , I got this problem, and I think I'm missing something You can check, i've put a example here : http://lickmychip.com/ = There, the hidden part is noticed with a dotted box. How to do it the right way ?

[jQuery] [treeview] Collapsed tree will flash before collapsing. Anyway to avoid it?

2009-07-29 Thread Pablo
Hi Guys, I'm using the treeview jQuery plugin (http://bassistance.de/jquery- plugins/jquery-plugin-treeview/) to display the sitemap for a site. My customer wants to see the tree collapsed on the page load and the user should expand it as he sees fit. So, I've setup it like that:

[jQuery] stop jquery script until image is load

2009-07-29 Thread Matthieu
Hi Id like to now if its possible to stop a jquery script and continue it only when an image is load and disolayed? thks

[jQuery] problem: append('script src=remote src/') using evalScript with datatype script and async false is not synchonous

2009-07-29 Thread Benedikt
Hi everybody, I hope yomebody can help. I am using jquery's append-function to append text, to be parsed to dom-nodes and, in case of script-tags, to be evaluated. Internally jquery is currently using an ajax-call (in evalScript) in case a script-tag with src-attribute was found. It also

[jQuery] validate

2009-07-29 Thread zaka29
Hi, Please give advise, how to assign rules for form elements using their ids attributes instead of name e.g rules:{ name: required, //plugin retrieves form element by name, but should be id email: required } Thanks

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

2009-07-29 Thread chris_huh
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 stop this, maybe using an onclick event instead of relying on the #tabs links?

[jQuery] jquery blocks javascript?

2009-07-29 Thread solow
Hey. I'm using jquery, to load in pages. now one page, is a list. it uses *again jquery* jquery code, to do something with the li. Now somehow, alone, it works. but when I loaded in the page, it doesn't work anymore. Some code: script type=text/javascript src=http://ajax.googleapis.com/ajax/

[jQuery] Re: slideToggle jump issue

2009-07-29 Thread pouw
If you add this style: .tgl { width: 700px; } It's going to stop jumping ;) On Jun 26, 6:28 pm, Maujor css.mau...@gmail.com wrote: I have the same slideToggle effect in two slightly differents scenarios. Scenario #1 - There is a CSS rule setting with:700px for the whole scenario. Scenario #2

[jQuery] looking for a sortable draggable tree with jquery 1.3+ support

2009-07-29 Thread Kefi
Hi! I'm looking for a tree widget for managing categories and nested sub categories in my application. But nothing i found seems to meet my requirements. I need to be able to drag one category to an other and sort categories in one group, I found some scripts but some of them don't work with

[jQuery] div at child of body does not work

2009-07-29 Thread mahen
Guys, I am new to jQuery. And I am trying to use jQuery for my application. I am stuck at something which I want to use. Here is the detail I have a page, which when submitted, gets a full HTML as response (complete html, head, body). So I tried to replace the body of present page with the body

[jQuery] Re: stop jquery script until image is load

2009-07-29 Thread Liam Potter
not tried this, but I'm assuming. $(img).ready(function(){ // do stuff here }); Matthieu wrote: Hi Id like to now if its possible to stop a jquery script and continue it only when an image is load and disolayed? thks

[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 chris@gmail.com 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

[jQuery] Re: Collapsed tree will flash before collapsing. Anyway to avoid it?

2009-07-29 Thread TH Lim
What I did was hide the menu until the DOM is loaded then show the menu again. On Jul 29, 7:39 pm, Pablo gom...@gmail.com wrote: Hi Guys, I'm using the treeview jQuery plugin (http://bassistance.de/jquery- plugins/jquery-plugin-treeview/) to display the sitemap for a site. My customer

[jQuery] Bug? -- toggle() of TR broke in IE8

2009-07-29 Thread Fontzter
I put together a simple case to demonstrate this: http://jsbin.com/ijini This works in other browsers but not IE8. Thanks, Dave

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

2009-07-29 Thread chris_huh
Thanks but I can't find jquery.history_remote.pack.js. I am using jquery 1.7.1 and the tabs thing that comes with JQuery UI. On Jul 29, 2:25 pm, rupak mandal rupakn...@gmail.com wrote: Hi, if you remove the jquery.history_remote.pack.js then I think it works properly. On Wed, Jul 29, 2009 at

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

2009-07-29 Thread chris_huh
Thanks but I can't find jquery.history_remote.pack.js. I am using jquery 1.7.1 and the tabs thing that comes with JQuery UI. On Jul 29, 2:25 pm, rupak mandal rupakn...@gmail.com wrote: Hi, if you remove the jquery.history_remote.pack.js then I think it works properly. On Wed, Jul 29, 2009 at

[jQuery] problem: append([scrip-tag with source]) using evalScript with datatype script and async false is not synchonous

2009-07-29 Thread Benedikt
Hi everybody, I hope yomebody can help. I am using jquery's append-function to append text, to be parsed to dom-nodes and, in case of script-tags, to be evaluated. Internally jquery is currently using an ajax-call (in evalScript) in case a script-tag with src-attribute was found. It also

[jQuery] Loading a Page in an Iframe with BlockUI

2009-07-29 Thread Chris
How would you load a separate page in an iframe with BlockUI? I tried: forceIframe:true, iframeSrc:'/iframepage.html' but BlockUI still creates the default Please wait... overlay, but also creates a seemingly separate iframe overlay, but without applying any of the CSS properties to it. If

[jQuery] Re: jqm and livequery issue

2009-07-29 Thread jjshell
Thanks for your answer. I did it. Now livequery is applied as expected, and the redirect issue has disappeared. But... the ajax content never gets loaded into the modal box. Yet the modal box opens. It just doesn't get loaded with any content. If I use {ajax: 'url'} it gets loaded, but the query

[jQuery] Re: jqm and livequery issue

2009-07-29 Thread Liam Potter
take the variables out of the quotes, you're just passing strings. that should sort it out. jjshell wrote: Thanks for your answer. I did it. Now livequery is applied as expected, and the redirect issue has disappeared. But... the ajax content never gets loaded into the modal box. Yet the

[jQuery] problem with appending and removeing..

2009-07-29 Thread BroOf
Hey all! I have a inputfield with the class .url. If the user types a url into the field it will be added to a list (function addurl) thats nor problem but if I want to delete a item it doesn't work. It seems that jquery doesn't accept it. if I add a list item manual it works Works:

[jQuery] Re: Draggable problem

2009-07-29 Thread Marcos Placona
bump On Jul 29, 12:56 pm, Marcos Placona marcos.plac...@gmail.com wrote: Almost works now, except that when you add a new item, all the existing objects have their ids changed to the newly added item's name. Can you spot anything weird on it? Cheers On Jul 29, 12:10 pm, Marcos Placona

[jQuery] Re: (validate) multiple error error messages per input

2009-07-29 Thread jckos
Thanks for the reply. My form looks like what you describe, but I still have the problem FIELDSET LEGENDshipping address/LEGEND LABEL for=firstname accesskey=f class=labelRequiredfirst name small class=labelRequired*/ small:/LABEL INPUT type=text

[jQuery] Re: problem with appending and removeing..

2009-07-29 Thread BroOf
found a solution: instead of using the click function i tried it with .live(click, function) On 29 Jul., 16:51, BroOf kontaktpl...@googlemail.com wrote: Hey all! I have a inputfield with the class .url. If the user types a url into the field it will be added to a list (function addurl) thats

[jQuery] Re: POST data not being sent

2009-07-29 Thread shaf
Thanks for the reply but that doesnt really answer my question.

[jQuery] Re: POST data not being sent

2009-07-29 Thread Liam Potter
tell us what happens when you submit the form, also, don't delete the quoted posts, means everyone not using a web based group reader can follow the conversation. shaf wrote: Thanks for the reply but that doesnt really answer my question.

[jQuery] Re: POST data not being sent

2009-07-29 Thread Brett Ritter
On Wed, Jul 29, 2009 at 12:16 PM, Liam Potterradioactiv...@gmail.com wrote: also, don't delete the quoted posts, means everyone not using a web based group reader can follow the conversation. However feel free to TRIM lengthy posts to the relevant parts. Even non-web-based group readers

[jQuery] distinguishing target element for load() calls (aka any ajax events have all elements as target??)

2009-07-29 Thread Nathan Bubna
So, you have a page: htmlhead script type=text/javascript src=jquery.1.3.2.js/script script type=text/javascript $(function() { var onajax = function(e) { alert($(e.target).text()); }; var onclick = function(e) { $(e.target).load('foobar'); }; $('#a,#b').ajaxStart(onajax).click(onclick);

[jQuery] Re: POST data not being sent

2009-07-29 Thread Cesar Sanz
Hello pal, take a look at your code, do you see any strange?? Oh, yes... url: url: _HOMEDIR+send?+str -- here you are building your query string, so jquery send it as a GET instead of POST $.ajax({ type: POST, async: false, url: _HOMEDIR+send?+str, dataType: json, beforeSend: function() {

[jQuery] Odd problems with jQuery and XHTML in Firefox.

2009-07-29 Thread ScottSEA
I have a full explanation of my issue on StackOverflow.com - if you're interested in the code, please refer here: http://stackoverflow.com/questions/1190763/firefox-not-running-jquery-for-xhtml-output It is marked as answered, but ignore that. The gist of the problem is when I load a

[jQuery] Re: Loading a Page in an Iframe with BlockUI

2009-07-29 Thread JohnZ
Here is how I handle it: $('#divOGHide').append('div id=divAI style=cursor: default;div style=background-color: #404040; height: 23px;div style=float: right; width: 25px; height: 23px; padding: 2px;img id=aiClose alt=Close src=Images/CloseButton.gif //divdiv style=width: 250px; text-align:

[jQuery] Re: Loading a Page in an Iframe with BlockUI

2009-07-29 Thread Eric Martin
Chris, Regarding SimpleModal, wouldn't this accomplish what you are looking for? $.modal('iframe src=http://www.ericmmartin.com; id=iframeTest name=iframeTest height=450 width=830 style=border:0 /', { closeHTML:, overlayClose:true, containerCss: {height:450, width:830}

[jQuery] Re: POST data not being sent

2009-07-29 Thread shaf
Ok guys, thats for the advice and replies. Cesar, if thats how you construct a GET string how would I construct a POST string ? On Jul 29, 5:45 pm, Cesar Sanz the.email.tr...@gmail.com wrote: Hello pal, take a look at your code, do you see any strange?? Oh, yes... url: url: _HOMEDIR+send?+str

[jQuery] function running 2X

2009-07-29 Thread marksimon
Any idea why this would run twice: function clickcharges() { $('#cardcharges tr td').click(function() { alert('execute once'); }); }

[jQuery] Re: function running 2X

2009-07-29 Thread András Csányi
2009/7/29 marksimon zen...@gmail.com: Any idea why this would run twice: function clickcharges() {        $('#cardcharges tr td').click(function() {        alert('execute once');         }); } Stupid idea, but maybe... Because the td tag is part of the tr. And if you click the cell once

[jQuery] Re: function running 2X

2009-07-29 Thread marksimon
no stupid ideas here, but changing to $(#cardcharges td).click( didn't fix the problem. On Jul 29, 11:22 am, András Csányi sayusi.a...@gmail.com wrote: 2009/7/29 marksimon zen...@gmail.com: Any idea why this would run twice: function clickcharges() {        $('#cardcharges tr

[jQuery] Re: function running 2X

2009-07-29 Thread Eric Garside
Pretty sure its because the event is bubbling up. Try: $('#cardcharges td').click(function(){ alert('execute once'); return false; }); On Jul 29, 2:38 pm, marksimon zen...@gmail.com wrote: no stupid ideas here, but changing to $(#cardcharges td).click( didn't fix the problem. On Jul 29,

[jQuery] Re: POST data not being sent

2009-07-29 Thread alyanm
Hi, I personally prefer to use $.getJSON for this sort of thing, seems to do a better job with the JSON parsing and all that: $.getJSON(_HOMEDIR+send?+str, ... However, I'm wondering if send is actually the name of the file you want to invoke? Perhaps you left the .php off in your url string?

[jQuery] search feature and sorting not working

2009-07-29 Thread sushil
Hey i am using flexigrid in my application the flexigrid gets loaded but when i search in flexigrid it is not getting loaded.. the problem is my page is not static all data comes dynamically throguh ajax.. here is the sample div table id=list_table border=0 cellpadding=0 cellspacing=0

[jQuery] blockUI plugin:: scroll

2009-07-29 Thread EdAime
I am using the blockUI plugin. I am facing a situation where a form that I am showing on top of the blocked page can be too long if the browser is not in full sreen mode. Does anybody know a way to scroll a blocking element? Currently, if you scroll, it scrolls the blocked page behind, but not

[jQuery] RAiLS + jQuery - trying to get rid of Prototype...

2009-07-29 Thread erwin
I am trying to get rid of Prototype and use only jQuery... , made some progress but I am stuck now to what I use to do : I sent an Ajax request ( read the doc.. ok; I got it) $.ajax({ url: '#{url}', async: true, type: 'GET', dataType: 'script'}); I land correctly at the url (show action)

[jQuery] simplemodal scroll problems

2009-07-29 Thread junkqwe
I am using simplemodal 1.3 my modal shows a product description. the description text is long and doesnt fit the modal without scrolls the problem is that both the page and the mpdal has scrolls and it looks very bad. anyone came across this problem? or maybe have a modal solution for jquery to

[jQuery] FadeIn/Out position: relative in IE

2009-07-29 Thread aaronp
Hello Everybody, So here is my issue. I have a container element that I'm fading in and out. It happens to have a child element that has position: relative. In IE (6, 7, and 8), when the container is faded, the entire element is opacity is changed except for the child element with position:

[jQuery] Re: distinguishing target element for load() calls (aka any ajax events have all elements as target??)

2009-07-29 Thread Nathan Bubna
Ok, looked at the event and ajax code. There's no way to distinguish targets, as that information is not passed into the $.ajax call and thus cannot be used when ajax events are triggered. So, they end up triggered 'globally', meaning they are made to not bubble and be called directly upon all

[jQuery] Re: function running 2X

2009-07-29 Thread marksimon
Still getting 2 alerts. On Jul 29, 11:49 am, Eric Garside gars...@gmail.com wrote: Pretty sure its because the event is bubbling up. Try: $('#cardcharges td').click(function(){ alert('execute once'); return false; }); On Jul 29, 2:38 pm, marksimon zen...@gmail.com wrote: no stupid

[jQuery] Re: function running 2X

2009-07-29 Thread John Resig
How many times is clickcharges called? Perhaps you're binding a click more than once. --John On Wed, Jul 29, 2009 at 3:03 PM, marksimon zen...@gmail.com wrote: Still getting 2 alerts. On Jul 29, 11:49 am, Eric Garside gars...@gmail.com wrote: Pretty sure its because the event is bubbling

[jQuery] Re: function running 2X

2009-07-29 Thread Brett Ritter
On Wed, Jul 29, 2009 at 3:03 PM, marksimonzen...@gmail.com wrote: Still getting 2 alerts. You show your .click() function in another...is that wrapping function getting called more than once? If so, the action is getting bound more than once. -- Brett Ritter / SwiftOne swift...@swiftone.org

[jQuery] Re: function running 2X

2009-07-29 Thread marksimon
Got it. Thanks all. I was calling it twice. Fixed that and it's fine now. On Jul 29, 12:12 pm, Brett Ritter swift...@swiftone.org wrote: On Wed, Jul 29, 2009 at 3:03 PM, marksimonzen...@gmail.com wrote: Still getting 2 alerts. You show your .click() function in another...is that wrapping

[jQuery] Linkselect Plugin Woes

2009-07-29 Thread skube
I'm having a problem with the GivaLabs' Linkselect plugin (http:// www.givainc.com/labs/linkselect_jquery_plugin.htm) and I'm wondering if anyone has any insight? The plugin works great for most things, expect when I try to use the replaceOptions to repopulate the option list. I keep getting

[jQuery] get value of textfield

2009-07-29 Thread shaf
Hi Guys How do I get the value of a form textfield ? form input type=text name=name id=name / Your Name /form

[jQuery] Re: get value of textfield

2009-07-29 Thread András Csányi
2009/7/29 shaf shaolinfin...@gmail.com: Hi Guys How do I get the value of a form textfield ? form   input type=text name=name id=name / Your Name /form Hi! Try it like this: $(#name).val(); András -- - - -- Csanyi Andras -- http://sayusi.hu -- Sayusi Ando -- Bízzál Istenben és

[jQuery] jCarousel Unable to Hide List Bullets

2009-07-29 Thread Chris
I noticed the default CSS in the jCarousel examples include list- style: none; However, if you hide the img tags, you'll noticed IE7, Safari4, and FF3.5 all show the list bullets. Is there something I'm missing here? I'd expect list-style: none; to be pretty simple to interpret, but I find it

[jQuery] Re: POST data not being sent

2009-07-29 Thread Cesar Sanz
Well, e.g (Do you see the data option ?) $.ajax({ type: POST, url: some.php, data: name=Johnlocation=Boston, success: function(msg){ alert( Data Saved: + msg ); } });http://docs.jquery.com/Ajax/jQuery.ajax#options Regards - Original Message - From: shaf

[jQuery] Re: POST data not being sent

2009-07-29 Thread Brett Ritter
On Wed, Jul 29, 2009 at 1:48 PM, shafshaolinfin...@gmail.com wrote: Ok guys, thats for the advice and replies. Cesar, if thats how you construct a GET string how would I construct a POST string ? You don't need a single string. $.ajax({ type: POST, async: false, url: _HOMEDIR+send.php, data:

[jQuery] Selector question

2009-07-29 Thread lukas
How can I pick an id element (here #bridge1,#bridge2) and toggle its child (here a p element) without actually using the id element as parent? 'this p' apparently does not work. $('#bridge1,#bridge2').click(function(){ $('this p').toggle(); return false; }); Thanks for your

[jQuery] Re: Loading a Page in an Iframe with BlockUI

2009-07-29 Thread Chris Spencer
Thanks JohnZ/Eric. That works perfectly! Chris On Wed, Jul 29, 2009 at 1:23 PM, Eric Martinemarti...@gmail.com wrote: Chris, Regarding SimpleModal, wouldn't this accomplish what you are looking for? $.modal('iframe src=http://www.ericmmartin.com; id=iframeTest name=iframeTest height=450

[jQuery] Re: Selector question

2009-07-29 Thread Hector Virgen
Within your click function, this refers to the element that was clicked (in this case, either #bridge1 or #bridge2). You can then get the (immediate) children of that element that match the selector 'p' and toggle that. $('#bridge1,#bridge2').click(function(){

[jQuery] Re: Selector question

2009-07-29 Thread Brett Ritter
On Wed, Jul 29, 2009 at 4:23 PM, lukasanimod...@gmail.com wrote: How can I pick an id element (here #bridge1,#bridge2) and toggle its child (here a p element) without actually using the id element as parent? 'this p' apparently does not work. $(this).children(p) It only checks immediate

[jQuery] Re: Selector question

2009-07-29 Thread lukas
Thank you for your immediate response, Hector and Brett! I love the jquery group!

[jQuery] Re: simplemodal scroll problems

2009-07-29 Thread Eric Martin
Do you have a link? Can you disable the scroll in the page. If not, how about disabling it in the modal: $(element).modal({onShow: function (d) { d.wrap.css('overflow','hidden'); }}); -Eric On Jul 29, 8:44 am, junkqwe urize...@gmail.com wrote: I am using simplemodal 1.3 my modal shows a

[jQuery] Re: jCarousel Unable to Hide List Bullets

2009-07-29 Thread Charlie
float has nothing to do with bullets. It sounds like you have other css issues at play. Best way to resolve is post a link. Chris wrote: I noticed the default CSS in the jCarousel examples include "list- style: none;" However, if you hide the img tags, you'll noticed IE7, Safari4, and

[jQuery] Re: get value of textfield

2009-07-29 Thread Charlie
http://docs.jquery.com/Attributes/val shaf wrote: Hi Guys How do I get the value of a form textfield ? form input type="text" name="name" id="name" / Your Name /form

  1   2   >