[jQuery] Re: jQuery website search function

2009-12-22 Thread RobG
On Dec 22, 10:51 pm, Schalk Neethling wrote: > Hi there, > > I was wondering whether anyone knows if the jQuery website has some sort > of API to access the search functionality of the site? Stimulus, response... function searchDocs(el) { document.location =

[jQuery] $(checkbox).css('background-color',value) does not work on FireFox?

2009-12-22 Thread John Arrowwood
All, I am building a bunch of widgets, and creating standard tests for each widget. Part of the test involves setting the background color attribute to a known value, and then making sure that the widget initialization code did what it was asked to do. So, on Safari, the code for the checkbox pa

Re: [jQuery] Re: Autosuggest breaks in ie7/8

2009-12-22 Thread Michael Geary
BTW, just to commiserate, you're not the only one who's ever posted incorrect information here. Want to hear a whopper I posted a couple of years ago? Someone was asking how to change the title in the browser window, and I told them that they couldn't: You only get one chance at setting the title,

[jQuery] Re: IE Issue with jquery.form.js

2009-12-22 Thread dirknibleck
This was helpful in determining that the problem is not in what is coming back from the server, but rather what is sent to it. The full jquery code for this page is below. What is to happen is that an input box in my form called ajax is supposed to be set to 1 when the page loads. This value of 1

Re: [jQuery] Re: Autosuggest breaks in ie7/8

2009-12-22 Thread Michael Geary
I intended no offense, MorningZ, but suggesting that changing a parameter name from 'row' to 'ThisRow' may somehow fix an IE problem isn't helpful in the slightest. It's simply incorrect. It won't fix the problem, and it's only a distraction from finding the real issue. 'row' isn't a reserved word

[jQuery] Re: Autosuggest breaks in ie7/8

2009-12-22 Thread MorningZ
your JSON {"results":[{ "postid":"697", "summary":"boddytest", "title":"testtitlehere", "link":"http:// testlink.com",

[jQuery] Re: Autosuggest breaks in ie7/8

2009-12-22 Thread MorningZ
btw, i realize i am mistaken, as "rows" is a property, not "row" my bad... i tried though

[jQuery] Re: Autosuggest breaks in ie7/8

2009-12-22 Thread MorningZ
"Sorry, but that's not right at all" My point was that IE does run into issue when it comes to reserved words, which "row" is and as you can (or obviously can't) tell from my reply, you're right, i was just taking some stabs in the dark to at least make an attempt to help. i don't think

Re: [jQuery] Re: Autosuggest breaks in ie7/8

2009-12-22 Thread Michael Geary
Sorry, but that's not right at all. There is no problem with using 'row' as a function parameter name in IE. We're veering into Cargo Cult Programming here, but it's not your fault, MorningZ. The problem is that we can't see the actual code that's going wrong, so we're all reduced to guessing. GJ

[jQuery] How to get these two slide show to alternate?????

2009-12-22 Thread Rick Faircloth
Ok.I've been banging my head and Google long enough. I've got two cycle plug-ins running, trying to get them to display the first image (working), wait 3 seconds (slideshow1), change slideshow1 image, wait 3 seconds, change slideshow2 image, wait 3 seconds change slideshow1 image, etc. J

[jQuery] Re: Autosuggest breaks in ie7/8

2009-12-22 Thread GJK
Thank you MorningZ for your nice reply. I have tested this with ie8, function DisplayResult(ThisRow) { var output = ''; output += ''; output += ''; output += '' + ThisRow['title'] + ''; output += row['summary']; output += ''; return output;

[jQuery] make table wisth adjustable

2009-12-22 Thread fachhoch
is there anything available to automatically turn my table , into adjustable width columns table ? -- View this message in context: http://old.nabble.com/make-table-wisth-adjustable-tp26897575s27240p26897575.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Re: Autosuggest breaks in ie7/8

2009-12-22 Thread MorningZ
IE has a really hard time with "reserved words" used as function names and/or properties try changing "row" to something else, even "Row" would be different enough, as IE *might* be thinking you mean a table row so instead of function DisplayResult(row) { var output = ''; output

[jQuery] Re: js function to jQuery

2009-12-22 Thread jqHunter
Thanks much Sime Vidas, it worked! Since mine is an aspx with an AJAX UpdatePanel, jQuery(document).ready(function(){...}); did not work for me. So I implented it in the pageLoad as below: jQuery.noConflict(); function pageLoad() { jQuery("#CollapseExpandTd").click(function() { jQuery(

[jQuery] Re: IE Issue with jquery.form.js

2009-12-22 Thread dirknibleck
Thanks for that, it was helpful in at least determining that the problem is completely different from what I thought it was. In IE, neither the headers nor the Ajax response were the same. It turns out that the ajaxForm() call is not sending the complete data set from the form... it is only sending

[jQuery] Re: Autosuggest breaks in ie7/8

2009-12-22 Thread GJK
Ok thank you, Why does this code work in Firefox etc. And not in internet explorer 7/8. And how to fix this for internet explorer? Greatly appreciate it! On Dec 23, 1:38 am, MorningZ wrote: > that means that "title" is not a valid property of the "row" > object > > On Dec 22, 5:46 pm, GJK

[jQuery] Re: Jquery .submit not firing up!

2009-12-22 Thread Mike Alsup
Most likely you have a JavaScript error somewhere that is preventing your scripts from running. Post a link if you can. On Dec 22, 8:15 pm, Peter Laws wrote: > But thats after the (test) alert box, and I'm not even getting that > popping up. Surely I should be seeing the alert on submit? > > 2

[jQuery] Re: IE Issue with jquery.form.js

2009-12-22 Thread Mike Alsup
Set a breakpoint in jQuery's httpData function and see why it's failing. Mike On Dec 22, 8:11 pm, dirknibleck wrote: > I have what I think is a pretty basic function going on that fails in > IE everytime. The code is below.  The javascript is first, followed by > the ajax response. > > In IE,

[jQuery] LavaLamp Plugin-Superfish Intergration

2009-12-22 Thread Daniel
Hi, I am extremely new to jQuery and and wondered if someone might be able to point me in the right direction. I want to add the LavaLamp plugin to the Superfish menu module created for Joomla. It is located here: http://users.tpg.com.au/j_birch/plugins/superfish/ The documentation on this site s

[jQuery] Cross-platform issue with animate, hide and show functions

2009-12-22 Thread EricBobrow
I am new to jQuery, and am trying to see if it can be used to replicate some flash-type UI features that my client wants. I created a simple demo page that works OK in IE8 and FF 3.5, but looks terrible on a Mac using Safari. If anyone can help me figure out how to work around this issue, I'd appre

Re: [jQuery] Re: Jquery .submit not firing up!

2009-12-22 Thread Peter Laws
But thats after the (test) alert box, and I'm not even getting that popping up. Surely I should be seeing the alert on submit? 2009/12/22 Stumps : > Use $(this).ajaxSubmit(options);  instead of $(this).ajaxForm > (options); > > .ajaxForm will bind a form to automatically post back as ajax while >

[jQuery] IE Issue with jquery.form.js

2009-12-22 Thread dirknibleck
I have what I think is a pretty basic function going on that fails in IE everytime. The code is below. The javascript is first, followed by the ajax response. In IE, the ajaxForm() function doesn't resolve to success, but it does in FireFox, Opera and Safari On IE, the error: function() returns

Re: [jQuery] Can't get onClick on appended elements

2009-12-22 Thread brian
See here: http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F On Tue, Dec 22, 2009 at 1:37 PM, Diego wrote: > I have the following snippet of code: > > This is where I'll place the 'li' elements. > > > After processing the file upload I add t

[jQuery] Re: Autosuggest breaks in ie7/8

2009-12-22 Thread MorningZ
that means that "title" is not a valid property of the "row" object On Dec 22, 5:46 pm, GJK wrote: > The error was wrong, the good one from internet explorer: > - > Line: 158 > Character: 2 > Code: 0 > Error Message: 'title' is null or not an object > U

[jQuery] Re: Can't get onClick on appended elements

2009-12-22 Thread Šime Vidas
First: get the Web Developer Toolbar for Firefox Then run your page in it and if you have JavaScript errors, then the icon on the far right of the toolbar will be red... you can click it to view the error... for example have you assigned values to the fileName and filePath variables?

[jQuery] Re: js function to jQuery

2009-12-22 Thread Šime Vidas
Should be pretty easy: $("#CollapseExpandTd").click(function() { $("#TreeviewTd").toggle(); $("#MenuBarTd").toggle(); });

[jQuery] Re: Autosuggest breaks in ie7/8

2009-12-22 Thread GJK
The error was wrong, the good one from internet explorer: - Line: 158 Character: 2 Code: 0 Error Message: 'title' is null or not an object URL: http://localhost.com/js/search.js And it's coming from this function: - f

[jQuery] Re: Passing a string via variable results in NaN

2009-12-22 Thread T.J. Simmons
When you use + like you are there, it's trying to add your string to something.. which isn't a number, hence NaN. Could you not do ppost : { 'Path' : $FilePath, 'File' : $FileName } ? That would be my suggestion. -- T.J. On Dec 22, 1:58 pm, Adrian Maleska wrote: > I've got a little problem with

Re: [jQuery] Meta question about this newsgroup

2009-12-22 Thread aquaone
Providing a link to a live site or using a pastebin type site (e.g. http://jsbin.com/) is likely your best bet. aquaone On Tue, Dec 22, 2009 at 10:30, eleven wrote: > Hello, > > I am new to this Google Group, so forgive me if this is the wrong > place to ask this question. > > I use jquery in a

[jQuery] Autosuggest breaks in ie7/8

2009-12-22 Thread GJK
Hello, I got this code for search auto suggest and everything works fine in Firefox, Chrome, Opera etc. But it breaks in internet explorer 7 and 8. I get this error: - Line: 158 Character: 2 Code: 0 Error Message: 'fghds' is null or not an object URL: http

[jQuery] Can't get onClick on appended elements

2009-12-22 Thread Diego
I have the following snippet of code: This is where I'll place the 'li' elements. After processing the file upload I add the elements like this: $("#file-list").append('' + fileName + ' '); The thing is, I can't get the onclick event on those links, it just do nothing when I click on it. If I

[jQuery] Jquery to filter headlines

2009-12-22 Thread pkunzipula
Hello, Experts. I have used this script to filter s using a text input: http://ejohn.org/blog/jquery-livesearch/ ...however, I am not sure how to modify it now for my latest requirement. I have a page of news stories that are written as an headline followed by a story of s or s or both. I wan

[jQuery] Meta question about this newsgroup

2009-12-22 Thread eleven
Hello, I am new to this Google Group, so forgive me if this is the wrong place to ask this question. I use jquery in a new web application i am developing, and all is going well (using jquery, jquery-ui and jqgrid). The question i have is about representing code in topics in this group. All item

[jQuery] Dynamic Dialog Question

2009-12-22 Thread jtrainaldi
Below is the snippet of code: $('.extra_dialog_link').click(function() { event.preventDefault(); var data = this.id.replace('cn_', ""); //alert(data); $('.dialog_extra').dialog('open');

[jQuery] Passing a string via variable results in NaN

2009-12-22 Thread Adrian Maleska
I've got a little problem with passing two strings $FilePath and $FileName to the PHP file and I've got no clue why. When I do it this way everything's Ok ppost : { 'Path' : 'temp/', 'File' : 'Myfile.jpg' }, Of cause I need to do this via variable but

[jQuery] js function to jQuery

2009-12-22 Thread jqHunter
Hi All, I have the following js function used in an old web app. How can I translate this to equivalent jQuery code? Appreciate your help! function expandCollapse_onclick() { var treeCell = document.getElementById("TreeviewTd"); var topmenuCell = document.getElementById("MenuBarTd");

[jQuery] Re: Jquery .submit not firing up!

2009-12-22 Thread Stumps
Use $(this).ajaxSubmit(options); instead of $(this).ajaxForm (options); .ajaxForm will bind a form to automatically post back as ajax while ajaxSubmit will send the request to the server. On Dec 22, 9:56 am, Pedster wrote: > Using: > JQuery and the Form plug in > > my head tag includes

RE: [jQuery] passing variables to JQuery

2009-12-22 Thread Scott Stewart
Thanks John. As far as .live goes, I'm using a very Ajax heavy template (Admintasia http://www.admintasia .com) and I've made it more so by "Ajaxifying" the navigation (passing the href attribute to a load function) .live is the only way that I can get a lot of this to function $("ul#navig

Re: [jQuery] passing variables to JQuery

2009-12-22 Thread John Arrowwood
(function($){ var defaults = { button: '#buttonId', form: '#formId', target: '#targetId', url:'/change/me', page: '/change/me/too', }; clickToLoad = function( options ) { var o = $.extend({},defaults,optio

Re: [jQuery] UI dialog, How to center buttons

2009-12-22 Thread Richard D. Worth
.ui-dialog .ui-dialog-buttonpane { text-align: center; } .ui-dialog .ui-dialog-buttonpane button { float: none; } - Richard On Tue, Dec 22, 2009 at 1:44 PM, RobGMiller wrote: > What is the easiest way to manage button location at runtime? >

Re: [jQuery] Re: Does jquery have problems with webkit browsers?

2009-12-22 Thread John Arrowwood
I'm pretty sure it has nothing to do with jQuery. I use $.ajax flawlessly on Safari. However, I did note that some browsers are more forgiving than others with respect to the data and the data type matching. Make sure you are telling your ajax call what kind of data it should expect back from th

[jQuery] passing variables to JQuery

2009-12-22 Thread Scott Stewart
I've got a lot of hard coded values in JQuery functions like the one below $("#getTOByWeek").live("click", function(){ $.ajax({ type:"post", url:"webapps/hr/admin/actions/act_adminHR_Handler.cfm", data:$("#toByWeek").serialize(), cache:"false",

[jQuery] UI dialog, How to center buttons

2009-12-22 Thread RobGMiller
What is the easiest way to manage button location at runtime?

Re: [jQuery] Re: How to disable jQuery favicon?

2009-12-22 Thread Todd Wells
Oh, icon identification fail -- I mistakenly thought the "J" was jQuery, but it was Jetty... sorry for the noise :-/ On Tue, Dec 22, 2009 at 10:11 AM, lelando wrote: > It really shouldn't be there, so first, double-check it in another > browser, and make sure you clear your cache thoroughly. > >

Re: [jQuery] Re: jQuery Selector Help

2009-12-22 Thread Charlie Griefer
On Tue, Dec 22, 2009 at 10:40 AM, Charlie Griefer wrote: > On Tue, Dec 22, 2009 at 10:34 AM, Mike Walsh wrote: > >> >> [ ... snipped ... ] >> >> Thanks for pointing me in the right direction. This is what I ended >> up getting to work: >> >>jQuery("span.event", ".calendar-table").eac

Re: [jQuery] Re: jQuery Selector Help

2009-12-22 Thread Charlie Griefer
On Tue, Dec 22, 2009 at 10:34 AM, Mike Walsh wrote: > > [ ... snipped ... ] > > Thanks for pointing me in the right direction. This is what I ended > up getting to work: > >jQuery("span.event", ".calendar-table").each(function(){ >var html = this.innerHTML.replace(/()\

[jQuery] Re: jQuery Selector Help

2009-12-22 Thread Mike Walsh
On Dec 22, 12:09 pm, Charlie Griefer wrote: > 2009/12/22 Šime Vidas > > > Well, you selected BR elements, which are empty elements, so it's no > > mystery why this.innerHTML returns undefined... > > > Also, DIVs shouldn't appear inside SPANs... > > He did state that he's using generated HTML.  

[jQuery] Re: How to disable jQuery favicon?

2009-12-22 Thread lelando
It really shouldn't be there, so first, double-check it in another browser, and make sure you clear your cache thoroughly. I've had similar errors occur sometimes caused by imperfect browser extensions or other browser errors. In fact, I've been living with a bug caused by an extension in FF for

[jQuery] QUnit reset

2009-12-22 Thread Justin Meyer
I'm converting qunit to work with selenium. Is there a way to 'restart' the tests. I need to do this to run the tests with another browser. Thanks!

[jQuery] Re: Does jquery have problems with webkit browsers?

2009-12-22 Thread pw
On Dec 22, 10:34 am, "T.J. Simmons" wrote: > I'd provide more detail; $.ajax should work in every browser. There's > more than likely an issue with the script or the response. An example > of what you're doing would work wonders for helping us figure it out. > > - T.J. > > On 12/22/09, pw wrote:

[jQuery] Re: Plugin development: Defaults & options: Questions?

2009-12-22 Thread Micky Hulse
Hi Scott! Thanks again for the help. I really appreciate it. :) > Looks right to me.  One alternative, which wouldn't break the chain if > target is not supplied properly, would be this: Ah, right. That is a smart solution. Thanks for the clarification! > I don't think it's overkill for your in

[jQuery] How to disable jQuery favicon?

2009-12-22 Thread TTop
I have a page where I've used jQuery. I have not designated a favicon on the page, but for some reason there is a jQuery logo as the favicon. How do I disable this?

Re: [jQuery] Re: jQuery Selector Help

2009-12-22 Thread Charlie Griefer
2009/12/22 Šime Vidas > Well, you selected BR elements, which are empty elements, so it's no > mystery why this.innerHTML returns undefined... > > Also, DIVs shouldn't appear inside SPANs... > He did state that he's using generated HTML. He has no control over it. Mike - this isn't really a jQ

[jQuery] Re: jquery autocomplete should link to page

2009-12-22 Thread Axel
Thank you very much. This is working. But it should happen after klicking on a result and not while typing. Now I try to find the position in the code where the "clicking event" is written and I can insert this. I think its somewhere in the jquery.autocomplete.js . Thank you! On 22 Dez., 15:

[jQuery] Jquery .submit not firing up!

2009-12-22 Thread Pedster
Using: JQuery and the Form plug in my head tag includes

[jQuery] Re: Does jquery have problems with webkit browsers?

2009-12-22 Thread T.J. Simmons
I'd provide more detail; $.ajax should work in every browser. There's more than likely an issue with the script or the response. An example of what you're doing would work wonders for helping us figure it out. - T.J. On Dec 22, 7:45 am, kumari Manohar wrote: > Remove > > On 12/22/09, pw wrote:

[jQuery] Re: jQuery Selector Help

2009-12-22 Thread Šime Vidas
Well, you selected BR elements, which are empty elements, so it's no mystery why this.innerHTML returns undefined... Also, DIVs shouldn't appear inside SPANs...

[jQuery] Re: (validation): remote rule causes submit to abort, fix included

2009-12-22 Thread KenGreer
No, it does not submit the form after the async request finishes. (I'm using the latest 1.6) Ken On Dec 21, 6:30 am, Jörn Zaefferer wrote: > The plugin will submit the form after the async request finishes. The > remaining problem is that any submit-button won't be submitted. Maybe thats > the p

[jQuery] Re: jquery autocomplete should link to page

2009-12-22 Thread MorningZ
function formatItem(row) { window.location = row[1]; //Send the user to URL 'row[1]' } On Dec 22, 7:33 am, Axel wrote: > Hello Everbody, > > i´m using "jquery autocomplete" on my site. In row [1] i put values > for building urls - and when I klick on it I want to move to the URL - > and no

[jQuery] Re: jQuery Selector Help

2009-12-22 Thread Mike Walsh
On Dec 22, 8:03 am, Dhruva Sagar wrote: > I would suggest you to wrap the sections within * into a div and select that > div. > > Thanks & Regards, > Dhruva Sagar. > [ ... snipped ... ] Unfortunately I don't have control of the generated content. The content is generated by a WordPress Calend

[jQuery] Re: Superfish and Wordpress

2009-12-22 Thread Mike Walsh
On Dec 20, 10:04 pm, Rob wrote: > I am having trouble getting my wordpress theme to use the Superfish in > the nav menu. My problem is I have subcategories that go 3 tabs deep > and currently it is very tough to navigate through the drop down menu > so I wanted to get Superfish to work since I h

Re: [jQuery] Does jquery have problems with webkit browsers?

2009-12-22 Thread kumari Manohar
Remove On 12/22/09, pw wrote: > > I have a script which relies on $.ajax to retrieve data from my > server. It works flawlessly in Firefox (Gecko), but is broken in > Chrome and Arora (two webkit-based browsers). Are there known issues, > or do I need to provide more detail? > > pw >

Re: [jQuery] can I add 2 jquery in 1 page

2009-12-22 Thread Michael Lawson
Not exactly sure why you would want to do that. Load the first jQuery with jQuery.noConflict(); Then you can access that one by saying jQuery(), and the second using the default $() cheers Michael Lawson Development Lead, Global Solutions, ibm.com Phone: 1-276-206-8393 E-mail: mjlaw...@us.ib

[jQuery] Does jquery have problems with webkit browsers?

2009-12-22 Thread pw
I have a script which relies on $.ajax to retrieve data from my server. It works flawlessly in Firefox (Gecko), but is broken in Chrome and Arora (two webkit-based browsers). Are there known issues, or do I need to provide more detail? pw

[jQuery] jquery autocomplete should link to page

2009-12-22 Thread Axel
Hello Everbody, i´m using "jquery autocomplete" on my site. In row [1] i put values for building urls - and when I klick on it I want to move to the URL - and not to autocomplete the input field (what is the originally purpose of the autocomplete). So I want the suggested Items to have a normal "-

[jQuery] can I add 2 jquery in 1 page

2009-12-22 Thread sonubagga
hi I m using 2 jquery in my site 1 is jquery tabs 2 is jquery "has" selectors both jquery files are different when I use both tabs are not working in my site please tell any solution Thanks in advance

[jQuery] JQuery tablesorter plugin + Dynamic Table Data via DWR

2009-12-22 Thread Berns
Hi folks, Using jquery's tablesorting, I've been trying to sort a table that contains data loaded dynamically/programatically using DWR's addrows method. The sorter would sort any column I pick but could only do so in one direction ( i.e. descending order only, not toggable between asc/desc ) a

[jQuery] Re: Superfish - current sublevel visible

2009-12-22 Thread tominou50
Yes i can see that others request a solution, i will search and i'll tell you if i find something. I thought maybe it's possible with the callback functions but at this time my tests are not successfull. Anyway, thanks for your answer. Thomas On 22 déc, 04:30, Charlie wrote: > question is clear

Re: [jQuery] jQuery Selector Help

2009-12-22 Thread Dhruva Sagar
I would suggest you to wrap the sections within * into a div and select that div. Thanks & Regards, Dhruva Sagar. On Tue, Dec 22, 2009 at 6:29 PM, Mike Walsh wrote: > Long time listner, first time caller ... > > I am struggling with a selctor and am hopeful someone can help me see > the fores

[jQuery] jQuery Selector Help

2009-12-22 Thread Mike Walsh
Long time listner, first time caller ... I am struggling with a selctor and am hopeful someone can help me see the forest through the trees. I am using a WordPress plugin which generates the following HTML: 26 * Christmas Break Christmas Break * http://localhost/?p=104"; style=""> Futsal T

[jQuery] jQuery website search function

2009-12-22 Thread Schalk Neethling
Hi there, I was wondering whether anyone knows if the jQuery website has some sort of API to access the search functionality of the site? Thanks, Schalk

[jQuery] Re: Superfish - Background Color on Sub-Menus

2009-12-22 Thread slflinders
Thank you. This gets me very close to what I want. The only problem now is that when I hover over the top level menu item, the sub-menu items appear and have a transparent background as well. As soon as I move focus to a sub-menu item, it takes on the solid background color I want. Is there a way t

[jQuery] Sorting Portlets

2009-12-22 Thread Mujji
Hi, I'm really confused here.. I"m using this example to save the state of portlets. http://jqueryui.com/demos/sortable/#portlets How can i get the id of the portlet which i'm moving and how can i get the column id to which i'm dragging? I gave the id attributes in div for column and for the p

[jQuery] Autocomplete Multiple

2009-12-22 Thread avagarwal
Hi, I have set the autocomplete for multiple, as shown below. When I use the tab to select an entry it works fine, but you try using the mouse then it does not work correctly. Any suggestion on what may be the issue (using IE7) - $('#textbox').autocomplete('url',{ minChars:1, max:20

[jQuery] Re: Dialog only opening the once

2009-12-22 Thread Sir Rawlins
Hey Richard, Thanks! That worked perfectly, I'd never have figured that out on my own, a great help. Rob On 22 Dec, 10:29, "Richard D. Worth" wrote: > See > > http://blog.nemikor.com/2009/04/08/basic-usage-of-the-jquery-ui-dialog/ > > Also, if you should have any more questions, note there's a

Re: [jQuery] Dialog only opening the once

2009-12-22 Thread Richard D. Worth
See http://blog.nemikor.com/2009/04/08/basic-usage-of-the-jquery-ui-dialog/ Also, if you should have any more questions, note there's a separate list for jQuery UI: http://groups.google.com/group/jquery-ui - Richard On Tue, Dec 22, 2009 at 5:22 AM, Sir Rawlins < robert.rawl...@thinkbluemedia.c

[jQuery] Dialog only opening the once

2009-12-22 Thread Sir Rawlins
Hello Guys, I'm using the jQuery UI plugin to create a modal dialog box to ensure the user is ready to commit an action. The code sample can be found here: http://pastebin.com/m1834215a Now, when the page first loads and I click the dialog box appears, however, if I close the dialog box and the

Re: [jQuery] Re: dialog box

2009-12-22 Thread Richard D. Worth
On Mon, Dec 21, 2009 at 11:01 PM, Jojje wrote: > oh ok :) Thanks for taking time to answer :) > > So now i got this, it works but it sends the ajax calls twice. is it > maybe because i set the callback wrong? the callback argument gets: > function() { fGbDelete(gbid,link); } > Shouldn´t it ge