[jQuery] Re: checking if jquery loaded

2010-01-15 Thread Nalum
Hello zendog74, In your script above you have "script.onload = loadPlugins();", the onload event is only usable in the body tag or the frameset tag. Other than that I think your script is ok. On Jan 15, 4:44 pm, zendog74 wrote: > These just give me undefined errors, as jQuery is not defined if i

[jQuery] Re: Easy way to do this in jQuery?

2010-01-11 Thread Nalum
Hello Nick, I've put up a very basic view of what you're looking for here http://pastebin.com/f4f2a029e Hope this helps you get what you're looking for. If you need more help let me know. Nalum On Jan 10, 11:25 pm, Nick Le Mouton wrote: > Hi everyone, > > I've jus

[jQuery] Re: What's different from keyCode to which?

2009-10-06 Thread Nalum
As far as I know one of them is not supported in IE. I can't find the explanation that I found when I first started looking at capturing user key presses. On Oct 6, 8:01 am, "David .Wu" wrote: > keyCode and which will get the same value, so anything different? > > > $(function() { >         $(

[jQuery] Re: Block access to the page but unblock certains divs

2009-10-02 Thread Nalum
I think you'll have to do it in such a way that it blocks the different elements individually and then unblock the ones that have errors. e.g. $('.blockMe').blockUI({message: null}); $('.error').unblock(); On Oct 2, 3:51 pm, samh12 wrote: > Hi Nalum, > Idon&#

[jQuery] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread Nalum
I've updated the javascript here. http://pastebin.com/m4caef476 If you need any help in understanding whats happening here let me know and I'll try to explain it, I'm not the best at explaining things though. Nalum On Oct 2, 4:06 pm, craigeves wrote: > Hi Nalum > >

[jQuery] Re: Block access to the page but unblock certains divs

2009-10-02 Thread Nalum
Have a look at he last posts in this thread. http://groups.google.com/group/jquery-en/browse_thread/thread/a174d8c1fdebad65 On Oct 2, 3:32 pm, samh12 wrote: > Hi, > > Is it possible to block the entire page but then override certain divs > with an unblock command?  Basically, I want to implement

[jQuery] Re: How to disable a form

2009-10-02 Thread Nalum
If you look at the examples you can set it to block just a specified element. On Oct 2, 3:19 pm, Cecil Westerhof wrote: > 2009/10/2 Nalum : > > > This is a nice plugin that I've come across that I think would be able > > to do exactly what you want. > > >http:

[jQuery] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread Nalum
27;ve explained how it works in this code here http://pastebin.com/m2c0e0bde. Hope this helps you out. Nalum On Oct 2, 3:15 pm, craigeves wrote: > Here it is - thanks for your help again > > > > >         jQuery UI Sortable - Portlets >         >         > >

[jQuery] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread Nalum
which > column it's in? It's just that it looks like it's related to a closed > and expanded portlet state. > > Thanks for your time. > > Craig > > On Oct 2, 2:58 pm, Nalum wrote: > > > > > Hello Craig, > > I've done this before by b

[jQuery] Re: How to disable a form

2009-10-02 Thread Nalum
This is a nice plugin that I've come across that I think would be able to do exactly what you want. http://malsup.com/jquery/block/ Nalum On Oct 2, 2:35 pm, Cecil Westerhof wrote: > 2009/10/2 brian : > > > > > > > > > On Fri, Oct 2, 2009 at 9:11 AM, Cecil We

[jQuery] Re: jQuery UI Portlets & Cookies

2009-10-02 Thread Nalum
Hello Craig, I've done this before by building up a string e.g. box- id1,collapsed;box-id5,not-collapsed;box-id3,collapsed|box- id4,collapsed;box-id2,not-collapsed;box-id6,collapsed; In the javascript do something like this http://pastebin.com/m90a2af6 Hope this helps, Nalum On Oct 2, 2:

[jQuery] Re: Modal Dialog with a datepicker inside, works one time, then never...

2009-09-30 Thread Nalum
nt do anything as it expects that an id is unique. Nalum On Sep 29, 7:01 pm, Alex Barrios wrote: > 2009/9/29 Nalum : > > > > > Hello Alex, > > Is > class="calendario" style="border:none"> loaded in using ajax? > > > If it isn't then you do

[jQuery] Re: table tbody tr:last td

2009-09-29 Thread Nalum
In the code you have pasted there you do not close your tbody tag could this be the case in your actual code? On Sep 29, 7:18 am, Xarem Nightslayer wrote: > hi > > I've a Problem: > > I have a table like this: > > >         >                 >                         123 >                    

[jQuery] Re: superfish

2009-09-29 Thread Nalum
Goolge tracking code is the cause of that error, I've come across this before and have contacted google about it and they said it was something to do with a script on my page but the only script on my page was the google tacking code. On Sep 29, 12:52 pm, glimbeek wrote: > I may not have to do w

[jQuery] Re: autocomplete

2009-09-29 Thread Nalum
is "return $.map(data, function(row) " passing the json variable to data or row? it looks to me like row is an empty variable. On Sep 29, 1:13 pm, Asa Carter wrote: > Hi > > My php is returning via json: > > a string (name) which is displayed in the text box > an int (location_id) > > When the

[jQuery] Re: $(form).submit() validation and multiple forms

2009-09-29 Thread Nalum
>   }); >   within.find('.treetable').treeTable(); > > } > > So, basically I can pass a dynamic tab into the method or just let it parse > the entire document.  In this case its parsing the entire document. > > On Tue, Sep 29, 2009 at 11:29 AM, Nalum wrote:

[jQuery] Re: $(form).submit() validation and multiple forms

2009-09-29 Thread Nalum
Try changing within to $('form'). I haven't come across within so I don't know anything about it. On Sep 29, 4:45 pm, Jeremy wrote: > I have built out a fairly rhobust app using jquery and jquery-ui all > was going well until we started to bring different screens together > inside a tabbed inte

[jQuery] Re: How do I stop my div from sliding?

2009-09-29 Thread Nalum
I agree with Jon, you would be better off using css fixed style for this rather than javascript. On Sep 29, 5:12 pm, Jon Banner wrote: > as soon as i scroll your demo, the div disappears off the top of the page in > firefox and IE7 > > From the behaviour you describe i think this might be useful

[jQuery] Re: Modal Dialog with a datepicker inside, works one time, then never...

2009-09-29 Thread Nalum
Hello Alex, Is loaded in using ajax? If it isn't then you don't need to put the date picker into a function, you could do the following: http://pastebin.com/m4ddcd98b If it is loaded with ajax then you need to call the function every time it is loaded into the page. Hope this helps

[jQuery] Re: help read code

2009-09-29 Thread Nalum
.mouseup(); takes a function as it's argument. So the user is creating a function while passing it through to .mouseup(); It could also have been done like this. $(document).mouseup(mouseUpFunction); function mouseUpFunction(e) // e is the event { if($(e.target).parent("a.signin").length==0

[jQuery] Re: jQuery plugin help

2009-09-26 Thread Nalum
pluginname: function(){ ... } }); be the same as doing $.pluginname = function(){ ... } Again, thanks for your help. On Sep 25, 2:38 pm, Karl Swedberg wrote: > Hi Nalum, > > It's pretty straightforward. Instead of doing this: > > $.fn.pluginname = function

[jQuery] jQuery plugin help

2009-09-24 Thread Nalum
Hello All, I'm trying to create a plugin that I want to be able to call like $.pluginname(...) where currently I have to call the plugin like this $ (...).pluginname. Any help would be greatly appreciated. Nalum

[jQuery] jQuery 1.3.2 Not working at all

2009-02-26 Thread Nalum
Hello All, I've just updated my jQuery to the latest and now I'm getting this error in firebug. [Exception... "'Syntax error, unrecognized expression: [...@rel^="collapse-"]' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: