[jQuery] Re: jqGrid UI Theming

2009-03-17 Thread W
Wow ..., it's awesome !! Thanks for the sharing Tony ... Warm Regards, Wildan On Tue, Mar 17, 2009 at 3:10 PM, Tony wrote: > > Thanks Richard > Thanks Rey, > > I think that jQuery UI have a great potencial to be one of the best js > library. > Converting jqGrid to UI Theming is my little contr

[jQuery] checkbox and .load

2007-05-07 Thread John W
Hi all, Question regarding the use of .load with a checkbox. I have a list of items. Each item has a checkbox with a unique id. When the customer checks the checkbox i want to do an ajah request to an external file (like adding an item to the cart) which then updates the content in a div showing

[jQuery] Re: how to use $(html) to create element in another frame?

2007-08-12 Thread Jay W
Thanks. I tried it using $('new div text here', window.document).appendTo('body'), nothing happened; If I try $ ('new div text here', window.document).appendTo('body', window.document), an "Invalid Argument" error is thrown. Any suggestion? Thanks On Aug 12, 11:43 am, "Matt Stith" <[EMAIL PROTE

[jQuery] Re: how to use $(html) to create element in another frame?

2007-08-12 Thread Jay W
need to specify the context when creating new elements, and > appendTo takes 1 argument, try like this: > > $('text').appendTo(window.document); > > untested, but that should work > > On 8/12/07, Jay W <[EMAIL PROTECTED]> wrote: > > > > > Thanks

[jQuery] Re: how to use $(html) to create element in another frame?

2007-08-12 Thread Jay W
Well, Matt, it is only working in Safari, (maybe firefox), not in IE. it will get "Invalid Argument" error message. Is createElement in IE limited only to that document? On Aug 12, 10:41 pm, Jay W <[EMAIL PROTECTED]> wrote: > Awesome, I just test it and it worked!

[jQuery] Re: how to use $(html) to create element in another frame?

2007-08-12 Thread Jay W
eating an element is useless too, so > might as well remove the 2nd argument to $ > > On 8/12/07, Jay W <[EMAIL PROTECTED]> wrote: > > > > > Well, Matt, it is only working in Safari, (maybe firefox), not in IE. > > it will get "Invalid Argument" error me

[jQuery] Re: how to use $(html) to create element in another frame?

2007-08-13 Thread Jay W
nd and 3rd method still works in Safari but not in IE. I am not sure whether I implemented the first method as you described correctly or not. Thanks again. On Aug 12, 11:20 pm, "Matt Stith" <[EMAIL PROTECTED]> wrote: > Hmm.. try: > > $("").appendTo($(docume

[jQuery] Re: how to use $(html) to create element in another frame?

2007-08-14 Thread Jay W
Awesome! :) This is exactly what I needed. It works perfectly in IE and Safari. 5-Stars to your post. Thank you so MUCH! On Aug 13, 11:43 am, "Jeffrey Kretz" <[EMAIL PROTECTED]> wrote: > The basic problem here is that IE has security restrictions about moving > elements between frames. You can't

[jQuery] Basic JSON help

2007-08-16 Thread jeff w
Hello, I am new to jQuery, and have started to play with JSON,but I need some info about how I refer to the JSON Object once it is returned from the server. I know I can loop through the contents of the object, and I can use json.count, but I am really unsure about the correct syntax to target t

[jQuery] Basic JSON help

2007-08-16 Thread jeff w
Hello, I am new to jQuery, and have started to play with JSON,but I need some info about how I refer to the JSON Object once it is returned from the server. I know I can loop through the contents of the object, and I can use json.count, but I am really unsure about the correct syntax to target t

[jQuery] Re: Basic JSON help

2007-08-16 Thread jeff w
> variable), don't necessarily have this special property. > > --Erik > > On 8/16/07, jeff w <[EMAIL PROTECTED]> wrote: > > > > > Hello, > > > I am new to jQuery, and have started to play with JSON,but I need some > > info about how I refer to the

[jQuery] Re: Basic JSON help

2007-08-16 Thread jeff w
es care of the > eval'ing for you. > > --Erik > > On 8/16/07, Michael Geary <[EMAIL PROTECTED]> wrote: > > > > > > From: jeff w > > > > I am new to jQuery, and have started to play with JSON,but I > > > need some info about how I refe

[jQuery] Get the element that's appended directly without using second step?

2007-08-20 Thread Jay W
With the help from a few jQuery'ers, the only way to dynamically create and append element using jQuery for multiframe application is $(window.document.body).append(""); This jQuery statement returns window.document.body object. There will be quite a few elements created this way in a same docu

[jQuery] Re: Get the element that's appended directly without using second step?

2007-08-20 Thread Jay W
indow.document.body); > > Is that what you're looking for? > > --Karl > _ > Karl Swedbergwww.englishrules.comwww.learningjquery.com > > On Aug 20, 2007, at 11:47 AM, Jay W wrote: > > > > > > > With the help from a few jQuer

[jQuery] Re: Get the element that's appended directly without using second step?

2007-08-22 Thread Jay W
> var rv = null; > // if contentDocument exists, W3C compliant (Mozilla) > if (parent.document.getElementById(aID).contentDocument){ >rv = parent.document.getElementById(aID).contentDocument; > } else { >// IE >rv = parent.window.frames[aID].document; > }

[jQuery] Jquery Pass Layer Name

2009-07-18 Thread James W
Hello, I am trying to load a report onto my page via ajax, the code post below currently works but what I would like to be able to do is pass the layer into which the results of the ajax request should be loaded as there are lots of boxes within the reports that require new data to be loaded on d

[jQuery] Jquery Pass Layer Name

2009-07-18 Thread James W
Hello, I am trying to load a report onto my page via ajax, the code post below currently works but what I would like to be able to do is pass the layer into which the results of the ajax request should be loaded as there are lots of boxes within the reports that require new data to be loaded on d

[jQuery] Jquery Superfish Ajax Call

2009-07-30 Thread James W
Hello, Does anyone know if it is possible to use AJAX calls with the superfish menu? and if so does anyone have any sample code to illustrate how? Instead of calling a link I would like to use the menu to load content into a container but only on certain menus. Thanks James

[jQuery] slide one div out left while sliding one in right

2009-08-26 Thread W. Young
I have a container div with two inner divs. I have one inner div visible taking up 100% of the visible area and another hidden div. I want the visible div to slide to the left while simultaneously sliding the other div in from the right. This works fine except that while the right div is slidin

[jQuery] Re: not returning a JSON object

2009-08-27 Thread W. Young
have you tried json.d ? On Aug 27, 9:38 am, defdev wrote: > Hi, > > i have a form defined as follows: > > $(document).ready(function(){ >         $('#edit_page_form').ajaxForm({ >                 type: "POST", >     timeout: 45000, >           dataType: 'json', >     error: function() { >      

[jQuery] Re: slide one div out left while sliding one in right

2009-08-29 Thread W. Young
item at a time. On Aug 26, 10:16 am, "W. Young" wrote: > I have a container div with two inner divs.  I have one inner div > visible taking up 100% of the visible area and another hidden div.  I > want the visible div to slide to the left while simultaneously sliding > the

[jQuery] jquery validate

2009-08-29 Thread James W
Hello, I am using jquery validate on one of my pages with a submit handler, Can anyone let me know how I can specifiy which layer should contain the error messages?. Here is the code I want to change: $(document).ready(function(){ jQuery(function() { var v = jQuery("#PropertyFor

[jQuery] Re: slide one div out left while sliding one in right

2009-09-04 Thread W. Young
are quite simple. > > -Anoop > > On 8/29/09, Charlie wrote: > > > > > there are lots of plugins to do this > > > look for carousel or scroll in a plugin search > > > jCarousel and scrollable are 2 excellent ones that come to mind as well as > > scr

[jQuery] How to subscribe to only discussions you've created or posted to

2009-09-08 Thread W. Young
This is similar to how forums work. I can't seem to find a way to do this so it's probably not available. Just thought I'd ask anyway. Thanks

[jQuery] adding extension property to jCarousel

2009-09-10 Thread W. Young
I can add extension methods to the jcarousel add in such as: jQuery.jcarousel.fn.extend({ position: function() { //alert(this.first-1); } }); jQuery.jcarousel.prototype.position = function() { //alert(this.first-1); }; but I want to get access to the "fir

[jQuery] Re: jQuery barcode

2009-04-30 Thread Richard W
1: create a html demo document 2: check it in the repository 3: change the mimetype of the html file using "svn prop set" (eg http://svnbook.red-bean.com/en/1.0/re23.html) so that you can view the html file through subversion 4: bob's your uncle I have done this for my little snake game: http://j

[jQuery] Re: Superfish 1.4.8 w/ Supposition

2009-05-12 Thread Steve W
JS error: > > > $.superfishis undefined (line 57) (Mac 10.5 w/ FF 3) > > > This works fine withSuperfish1.4.1, of course. I've tried it with > > Supersubs turnedoffwith the same result. It appears as though the > >superfishobject is not being passed and I'm

[jQuery] Odd .hover effect in IE7

2009-05-26 Thread Brian W
Using hover effect works fine in Firefox however it produces an odd effect in IE7. On hover the background-image gives the appearance of shifting up 1px and to the left 1px, also the text font changes. The background-image has rounded corners, the hover effect changes the corners to appear straigh

[jQuery] checkboxTree Plugin

2009-07-01 Thread Matt W.
repository can be found here: http://github.com/magearwhig/jquery-checkboxtree -Matt W.

[jQuery] Validate first and the carry on

2009-07-01 Thread James W
I am using some jquery code to validate a form and then post the results of the form via an ajax request to a script. I am struggling with the code as when I click submit the form validates but then also makes the ajax request. What I would like to be able to do is validate the form and then if th

[jQuery] Ajax Request Order

2009-10-10 Thread James W
Hello, I have a page that makes two ajax calls when the function is called. I have noticed while testing the page that sometimes the second request does not run, the first request works but then sometimes the second ones gets skipped. Is there a way to make sure the second request fires only aft

[jQuery] Spellchecker plugin

2009-12-04 Thread Richard W
Hi jQuery users I have pretty much finished my simple spellchecker plugin (barring additional functionality) and am wanting some testing/feedback/ criticism/bug reports etc from the jQuery community. My initial inspiration for the plugin came from a work responsibility: to build a spellchecker pl

[jQuery] TextArea formatting

2009-12-07 Thread James W
Hello, I am posting a contact form via ajax to a classic asp page. If I post the following in the comments: Line1 Test Line2 Test Line3 Test Line4 Test The results emailed in the form are as follows Line1 Test Line2 Test Line3 Test Line4 I have tried updating the asp page and replacing the li

[jQuery] setRequestHeader 1.1.4 vs 1.2.1

2007-09-26 Thread Tim W
Anyone have any idea why this code works in 1.1.4 and not in 1.2.1? The header apparently does not get sent... (using in a Ruby on Rails app where setting this head RoR responds with the proper js template) $.ajax({ url: event.target.href, data

[jQuery] Re: jquery 1.2 and rails

2007-10-16 Thread Tim W
The problem is that 1.2 does not send the xhr header if the call is made with a full http:// uri. If you just use the pathname it works fine. Took me a few hours of playing to figure this one out. Guess its a cross site security fix. On Oct 11, 4:30 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wro

[jQuery] Re: How to make the first word bold.

2007-11-13 Thread Matt W.
me = $(this); > me.html( me.text().replace(/(^\w+)/,'$1') ); > }); > > or > > $('#links a').each(function(){ > var me = $(this) >, t = me.text().split(' '); > me.html( ''+t.shift()+' '+t.join(' '

[jQuery] Safari Ajax and tablesorter

2007-11-14 Thread Matt W.
Hello, I am building a table with xml I am retrieving with $.ajax and once the table is appended to the page I am using tablesorter on it. It is working fine in IE7,ie6, Firefox 2 (mac and pc) but will not work on Safari 3. Tablesorter works fine in safari on tables not added to the dom after pag

[jQuery] Tabs 3 Update tab content

2007-11-28 Thread Richard W
Hi There I'm realling ejoying using tabs, especially the ajax content. I would like to know if there is painless way of updating the current tabs content via ajax without using the tabs. For example you view the content of a tab, click on a link within the tab, and the current tabs content updates

[jQuery] Re: Tabs 3 Update tab content

2007-11-29 Thread Richard W
to manage content through the $.ajax method, and I would be able to use to set class names etc etc. This is a very rough example of what I am trying to achieve, does anyone know of a better way to achieve this? Regards Richard On Nov 28, 9:06 pm, Richard W <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: Tabs 3 Update tab content

2007-11-29 Thread Richard W
Awesome, that is exactly what i'm looking for. Thank you Klaus, and thank you for an excellent plugin! On Nov 29, 9:29 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: > On 28 Nov., 20:06, Richard W <[EMAIL PROTECTED]> wrote: > > > Hi There > > I'm realling

[jQuery] Re: Tabs 3 Update tab content

2007-11-29 Thread Richard W
Sorry, I posted my shoddy code after you had replied to my post. I don't get these delayed messages.. In any case, the tabLoad method works perfectly for me, thank you for your help! On Nov 29, 3:44 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > On 29 Nov., 10:39, Richard W <

[jQuery] Re: Tabs 3 Update tab content

2007-11-29 Thread Richard W
Ah, I see your example shows how i can bind the tabs event to the link in the ajaxed content. Would this work? I'm going to test this evening and let you know how i come along.. On Nov 29, 3:44 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > On 29 Nov., 10:39, Richard W <[EMAIL

[jQuery] Re: Sortable on dynamic content - how to?

2007-12-05 Thread Jay W
You can also use $("ul.items").sortableRefresh() to make all items sortable after dynamically creating an item from javascript. On Nov 12, 5:34 pm, asle <[EMAIL PROTECTED]> wrote: > Thanks, your first suggestion works and is shorter than writing the > sortable code again. > But this does not work

[jQuery] event is fired every other time after using jQuery's sortable plugin

2007-12-05 Thread Jay W
I have the following code in a page. everything related to sorting is working well. Each item has a textarea and this textarea has onkeyup event handler. This event handler will only fire every other time. Does anyone know why this is happening? Thanks. $('table.pane').each(function(){ if

[jQuery] UI Tabs / Tabs 3

2007-12-12 Thread Richard W
I was wondering if there is any way of making the tabs still retain their original link after you have click on a tab. IE when you click on a tab, it goes selected but the link still remains and the cursor still remains as a link area, so when you are viewing the content of the selected tab, you s

[jQuery] Re: dimensions plugin error

2007-12-12 Thread Matt W.
This error happens when trying to use a dimensions method on a jquery selection that did not find anything (an empty jQuery collection). If you download the latest dimensions file from svn the error should no longer happen. On Dec 12, 10:40 am, Eridius <[EMAIL PROTECTED]> wrote: > I am getting t

[jQuery] Re: UI Tabs / Tabs 3

2007-12-13 Thread Richard W
Ahh yes i can see the logic in that. Thank you Klaus On Dec 13, 3:18 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: > On 12 Dez., 11:26, Richard W <[EMAIL PROTECTED]> wrote: > > > I was wondering if there is any way of making the tabs still retain > > their original

[jQuery] Newbie "Parent" question

2007-05-25 Thread Matt W
Hi folks, I started working with jQuery for the first time yesterday- and I've got something that I'm hoping you all may be able to help me figure out. I would think that this (simple?) bit of code would 1) find all the tags with class "addcomment", and then 2)assign an onClick that would creat

[jQuery] Re: Newbie "Parent" question

2007-05-25 Thread Matt W
Worked great- thanks! On May 25, 8:29 am, "Juan G. Hurtado" <[EMAIL PROTECTED]> wrote: > I think you should use "parent" as a function, with the (): > > alert($(this).parent().attr('class')); > > El 25/05/2007, a las 14:12, Matt W escribió: >

[jQuery] jQuery front page example (the 'run code' example)

2008-11-20 Thread Richard W
Why doesn't the little snippet of jQuery code on the homepage use a better example? When you run the code, it show's a paragraph, but the paragraph has padding, so towards the end of the animation it "jumps". Wouldn't it be so much smoother, and hence more impressive, to show a paragraph without a

[jQuery] Re: jQuery front page example (the 'run code' example)

2008-11-22 Thread Richard W
It would be great to some feedback. I find it hard to believe I'm the only person who has an eye, or even cares, for detail. On Nov 20, 9:26 pm, Richard W <[EMAIL PROTECTED]> wrote: > Why doesn't the little snippet of jQuery code on the homepage use a > betterexample? Whe

[jQuery] load script regarding to value of textfield

2009-01-12 Thread dirk w
hello community, i have some kind of a beginner question and i really would appreciate if you could help me with that. when someone types a value into the textfield and clicks on "search" or enter than the javascript line should be called regarding to the entered value. this should happen without

[jQuery] Re: load script regarding to value of textfield

2009-01-12 Thread dirk w
llback=showMyVideos&max-results=7&format=5">'; > >   // ajax functions to call $.ajax, $.load, $.get, $.post > > }); > > - > Read jQuery HowTo Resource  -  http://jquery-howto.blogspot.com > > On Mon, Jan 12, 2009 at 1:49 PM, dirk w wrote: > > > hello communi

[jQuery] Re: load script regarding to value of textfield

2009-01-13 Thread dirk w
ides anyone? On 12 Jan., 17:43, dirk w wrote: > thanks a lot for your help! > is it possible to additionally explain me how i can execute this link > through the ajax functions? that would be great! > > thanks in advance > > On 12 Jan., 15:53, "jQuery Lov

[jQuery] ajax :: how to load script

2009-01-15 Thread dirk w
hello community, i've got a textfield and a searchbutton. a click on the searchbutton schould execute the following java script which will return some data to a callbackfunction called "showmyvideos": $('#searchButton').click(function() { var url = 'http://gdata.youtube.com/feeds/api/vide

[jQuery] Re: ajax :: how to load script

2009-01-15 Thread dirk w
> This will place any text returned from the request into #element, but > will also scan for and execute any script tags in that returned data. > > Hope that helps. > > On Jan 15, 9:41 am, dirk w wrote: > > > hello community, > > i've got a textfield and a s

[jQuery] datepicker not showing up

2009-01-20 Thread Ryan W.
I've been having this problem trying to get my CSS to show up for the datepicker widget using JQuery UI. As far as functionality goes the datpicker works yet I can't get the CSS to show up. I'm using themeroller to style the the datepicker and using the following style sheets. uicore.css uitheme.

[jQuery] forms :: fire javascript on enter (without reloading the whole page)

2009-01-30 Thread dirk w
hello, i've a text inpput field and a button. if you click on the button a java script gets called (and all works fine) but if you type some text and push the enter button than the whole page gets reloaded on the form submit. i know how to prevent the browser to reload the whole page (by catching

[jQuery] Re: forms :: fire javascript on enter (without reloading the whole page)

2009-01-30 Thread dirk w
x27;http://gdata.youtube.com/feeds/api/videos?q='+ $ > ('#searchText').val() + '&alt=json-in-script&callback=showMyVideos&max- > results=7&format=5'; >         $.getScript(url); > >         return false; > > }); > > -- > Bohdan > &

[jQuery] having a problem with ' and strings

2009-02-04 Thread dirk w
hello jquery community, i am getting some strings from a page i don't have influence on. i just append those to elements (thanks to jquery this works like a charm!): $("#searchResultList").append(""); my problem is: sometimes the variable "title" contains a ' in the string, like "doesn't that lo

[jQuery] Re: having a problem with ' and strings

2009-02-04 Thread dirk w
lace all " to be ' and all ' to be " > > Personally, all my selectors use " > then functions use ' > > $("#searchResultList").append(' thumbnailUrl + '"       class="thumbnail" alt="' + titleFull + ' (' + min

[jQuery] caching getScript() :: ajax question

2009-02-10 Thread dirk w
hello, i am getting a script which calls back some json to my function "showMyVideos". during my research in this group i read that getScript wouldn't cache. in my case i would like to add some cache (lazy loading) to my getScript function since it isn't necessary to update a already searched resu

[jQuery] Re: caching getScript() :: ajax question

2009-02-11 Thread dirk w
any ideas? On 10 Feb., 17:31, dirk w wrote: > hello, > i am getting a script which calls back some json to my function > "showMyVideos". > during my research in this group i read that getScript wouldn't cache. > in my case i would like to add some cache (lazy loadi

[jQuery] Re: How do I translate this in jQuery?

2009-03-03 Thread Matt W.
function getContentFromIframe(iFrameName) { var myIFrame = $("#"+iFrameName); var content = myIFrame.contents().find("body").html(); $('#myiFrame-content').append(content); On Mar 3, 9:56 am, "Rick Faircloth" wrote: > I've made various attempts at translating this into jQuery w

[jQuery] Re: How do I translate this in jQuery?

2009-03-04 Thread Matt W.
> > > > > This is inside frame.html... > > > > - > > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of ricard

[jQuery] Re: How to trigger "click" event in jquery

2009-03-05 Thread Yun W
I have the same issue with the click on jQuery. When using $('#elmId').trigger('click'), it doesn't work on Google Chrome/Safari, but it does work on IE7/IE6. No error is thrown. What's the problem? Thanks. On Mar 5, 3:56 am, Andy789 wrote: > Hi All, > > I am struggling with something very si

[jQuery] How to drag link from another window and using the javascript in the main window to intercept the link and add customized handler?

2009-03-16 Thread Jay W
How to drag link from another window and using the javascript in the main window to intercept the link and add customized handler? The goal is to have an event handler in the main window, then whenever a new link from different browser window is dragged into the main window, the dropped link will

[jQuery] Re: How to trigger "click" event in jquery

2009-03-16 Thread Yun W
Andy, I still don't know why the trigger click doesn't work. For me, it doesn't work on Firefox and I wrote a greasemonkey script to do the clicking via this code: var evt = document.createEvent("HTMLEvents"); evt.initEvent("click", true, true);

[jQuery] Re: How to drag link from another window and using the javascript in the main window to intercept the link and add customized handler?

2009-03-17 Thread Yun W
hmm, can any expert suggest a path? Thanks. On Mar 16, 1:31 pm, Jay W wrote: > How todraglinkfrom another window and using the javascript in the > main window to intercept thelinkand add customized handler? > > The goal is to have an event handler in the main window, then

[jQuery] Re: Slow jQuery Event Cleanup in Firefox

2009-03-26 Thread Matt W.
You might want to try adding one click to the table and checking if the target was a td. On Mar 26, 7:13 am, J K wrote: > Let me start by saying that I am doing something rather unorthodox > with jQuery, and I realize that this is probably outside the realm of > what is reasonable. > > I have a

[jQuery] Re: Doc's site down?

2008-08-24 Thread Matt W.
Themeroller is unusable today.

[jQuery] Re: jQuery Accordion Library and jQuery Lightbox Plugin Conflict?

2008-08-27 Thread Steven W
That didn't work for me. Now I'm trying to implement lightbox 2 with jQuery accordion library and I still can't them to work together. I replaced every $ with $j and added var $j = jQuery.noConflict() to the top of my accordion js files (like someone suggested in a different forum) but that wa

[jQuery] Re: Jcrop v0.9.0 image cropping plugin - comments please

2008-09-17 Thread Richard W
Very very nice thank you Kelly. RE ui debate: i haven't taken a look a the code of this plugin, but from a users experience it does seem to have smoother dragging than the jQ UI example. On Sep 16, 7:22 pm, Jose <[EMAIL PROTECTED]> wrote: > thanks. > > I am a bit confused which one should I use.

[jQuery] i was patient, now i'm frustrated

2008-09-26 Thread Richard W
How long does it take to sort out hosting issues? 1 month, 2 months? I've been reading all the comments from frustrated developers who are unable to do their job because the jQuery site does not load. I thought those people should understand the situation and be patient. Now it's my turn to compla

[jQuery] Re: Special characters with ajax.

2008-09-26 Thread Richard W
You should use encodeURIComponent() >From the jQuery core, they use this method to encode data for use with serialize(): encodeURIComponent(string).replace(/%20/g, "+") On Sep 25, 5:08 pm, uncleroxk <[EMAIL PROTECTED]> wrote: > i know that .serialize will encode it to a "url safe" character, b

[jQuery] Re: Special characters with ajax.

2008-09-26 Thread Richard W
further reading: http://xkr.us/articles/javascript/encode-compare/ On Sep 26, 9:40 am, Richard W <[EMAIL PROTECTED]> wrote: > You should use encodeURIComponent() > > From the jQuery core, they use this method to encode data for use with > serialize(): > encodeURIComponent(s

[jQuery] Re: i was patient, now i'm frustrated

2008-09-26 Thread Richard W
query.com/(the site which most > developers need most) is up right now, and quite responsive. If by chance > you were going to jquery.com to download jQuery, you can get it here: > > http://docs.jquery.com/Downloading_jQuery > > - Richard > > On Fri, Sep 26, 2008 at 4:35 AM, Richa

[jQuery] Re: i was patient, now i'm frustrated

2008-09-27 Thread Richard W
wer outage at the server facility and they're working ot bring > > > it back > > > up:http://rimuhosting.com/maintenance.jsp?server_maint_oid=68009362 > > > > The other sub-domains should be responding fine (docs, plugins, ui, code). > > > > --John > &

[jQuery] simple jquery snake game, some feedback appreciated

2008-10-01 Thread Richard W
Hi all I recently make a classic old school "snakey" game using jQuery. It was a lot of fun, and something I'd been wanting to do since I was young. It ain't no serious game, more like proof of concept? Anyways, it's kinda fun. It supports levels, wall obstacles, snake growth etc. I've just create

[jQuery] Re: simple jquery snake game, some feedback appreciated

2008-10-02 Thread Richard W
I've managed to put a demo online so you can play the game. http://jquery.badsyntax.frih.org/snakey/ Snakey now also works in IE6. Suggestions/feedback welcome! On Oct 1, 10:38 pm, Richard W <[EMAIL PROTECTED]> wrote: > Hi all > I recently make a classic old school "sna

[jQuery] Re: simple jquery snake game, some feedback appreciated

2008-10-02 Thread Richard W
e default > behaviour! (sry for my english I think the last word is wrong :)) > > Nice game!!! > > On 3 Okt., 00:11, "Sam Sherlock" <[EMAIL PROTECTED]> wrote: > > > a true piece of nostalgia. > > > Snakey now also works in IE6. > > > I w

[jQuery] Re: simple jquery snake game, some feedback appreciated

2008-10-03 Thread Richard W
EALLY cool :) :) I just changed the mime-type of certain files which allows the browser to render the code as html and not just display it as text. Let me know if you require further information on how I did this. Peace On Oct 2, 11:25 pm, Richard W <[EMAIL PROTECTED]> wrote: > Thank y

[jQuery] Finish fadeout of link before loading new page, simple question from newbie

2008-10-22 Thread Erik W
Hi everyone, A simple question, is it possible to have an animation (in this case a fadeout) finish before loading the page in an ? ie. $("a.thumb").click(function(event){ $("a.thumb").fadeOut(150); event.Default(); }); problem is that the browser loads the page as soon as it can, and c

[jQuery] Re: checkbox and toggle function

2008-01-11 Thread jeff w
yeah, I am having the same issue. Anyone have a solution?? thanks! On Jan 8, 12:06 pm, jpl80 <[EMAIL PROTECTED]> wrote: > Using toggle() with a checkbox disables the checkbox's ability to check > itself on and off. > > http://tinyurl.com/yo9onzhttp://tinyurl.com/yo9onz > > -- > View this messa

[jQuery] jQuery Form ajaxForm submit to webservice gets redirected to web service URL output

2008-01-23 Thread Chris W
Hello, If anyone can help with this I'd really appreciate it. I am using the jQuery Form plugin to submit the contents of a Form via Ajax to a Web Service. The Web service resides on a different domain to the main site. I simply want to submit the form info to the web service via Ajax, check t

[jQuery] Re: JQuery Hello world not working

2008-03-05 Thread Matt W.
That code does not create a link, it binds that function to existing links. You either have to add a link in the html. Or create a link with something like $('a link').appendTo("body"); as the first line after $(document).ready(function() { On Mar 5, 2:16 am, pradeep_tp <[EMAIL PROTECTED]> wrot

[jQuery] Internet Explorer DOM elements visible on hide()

2008-03-28 Thread Ryan W.
I'm seeing some inconsistent results when using hide() in " (document).ready(function()" when using IE. My goal is to try to hide the other list items in my unordered list and only display one of them when the page loads. I've posted my code below. Works great in firefox! Any ideas on how to get t

[jQuery] IE6 removing : bug?

2008-04-11 Thread Richard W
Hi there I have noticed a very weird bug when using $.html() in IE6. For example I have: paragraph list item 1 list item 2 list item 3 When I used $("#content").html() I get paragraph list item 1 list item 2 list item 3 Other other browser is fine, problem is with IE6. Any suggestions

[jQuery] flicking screen on fade in FF Mac

2008-04-17 Thread Richard W
Hi There I was wondering if anyone else has noticed or experience the weird effect that fade has on the screen when viewed in FF on a mac (leopard). In safari and opera, even IE run under parallels, there is no screen flicker. When the fade is occuring, some colours, even the font changes slighty,

[jQuery] Re: flicking screen on fade in FF Mac

2008-04-18 Thread Richard W
I thank you 120 times dave. This fix appears to solve the problem. On Apr 17, 10:59 pm, David McFarland <[EMAIL PROTECTED]> wrote: > On Apr 17, 2008, at 1:08 PM, Richard W wrote: > > > > > Hi There > > I was wondering if anyone else has noticed or experience the wei

[jQuery] Re: How to stop other elements on the page from dimming

2008-05-02 Thread Richard W
I experienced the same problem and it haunted me in my sleep, I started to think it was a jQuery bug. I understand this is a FF bug, but don't you think at least there should be some sort of reference to this bug in the jquery fade docs? On May 2, 3:21 am, Karl Swedberg <[EMAIL PROTECTED]> wrote

[jQuery] Sending datastring using $.ajax with 'invalid characters'

2008-05-07 Thread Richard W
Hi There I have been struggling to correctly format a datastring to be sent via POST that may contain 'invalid characters'. I am trying to send text & html via ajax post, and this has been achieved mainly due to Javascript's escape() function. For example, to send the ampersand (&), escape() is u

[jQuery] Re: Sending datastring using $.ajax with 'invalid characters'

2008-05-13 Thread Richard W
On May 7, 5:57 pm, Richard W <[EMAIL PROTECTED]> wrote: > Hi There > > I have been struggling to correctly format a datastring to be sent via > POST that may contain 'invalidcharacters'. I am trying to send text & > html via ajax post, and this has been achieved m

[jQuery] New Plugin - Checkbox Tree Plugin

2008-05-13 Thread Matt W.
My first jquery plugin, hold the applause, a checkbox collapsible tree plugin. Please feel free to tell me why its good, why its bad and how it can be improved. http://floatmargin.com/2008/jquery-checkbox-tree-plugin/ Thanks.

[jQuery] Re: New Plugin - Checkbox Tree Plugin

2008-05-13 Thread Matt W.
Yeah I actually have done another version that has the tri state, perhaps I should include that and make it an option. The idea on this one is that if you select a child the parent has to be selected as well. On May 13, 7:47 pm, Dave Methvin <[EMAIL PROTECTED]> wrote: > > Please feel free to tel

[jQuery] Re: Display loading image while alternate image loads.

2008-05-28 Thread Richard W
Afterwhich, if you want to check if the image has been downloaded/ cached before displaying it you can use the Image.complete attribute eg: // timer var loadImg = 0; // create image, start caching image var $img = $("").attr("src", "/img/yourimage.jpg"); if (!$img[0].complete) { // show

[jQuery] Re: strange bug with IE and .html()

2008-06-10 Thread Richard W
if ($.browser.msie) { $("#content *").each(function() { $.removeData(this); }); } var html = $("#content").html(); http://docs.jquery.com/Internals/jQuery.removeData (although the above page isn't very helpful in this situation) On Jun 9, 9:00 am, Shaun <[EMAIL PROTECTED]> wrote: > thanks ver

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Richard W
Awesome Joel! Love the new features. I got one quick suggestion, if you add -moz-opacity:.999; to your body style then my screen won't experience display issues with fadein/ fadeout. (FF2 on Mac) On Jul 10, 4:44 pm, "Joel Birch" <[EMAIL PROTECTED]> wrote: > Okay, so the drop shadows are not appl

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Richard W
Hi Joel Indeed this is quite a frustrating FF bug! Your fix has not solved the solution for FF2 Mac, I have to assume because you're checking for browser verion < 1.9 .. ? On Jul 11, 2:16 pm, "Joel Birch" <[EMAIL PROTECTED]> wrote: > Okay, the IE7 fix has been released - Superfish is now v1.4.6

[jQuery] Re: Superfish 1.4.5 released - now with drop shadows!

2008-07-11 Thread Richard W
$.browser.version returns as string This should work: if ($.browser.mozilla && parseFloat($.browser.version) < 1.9) $('body').css('-moz-opacity',.999); On Jul 11, 3:17 pm, "Joel Birch" <[EMAIL PROTECTED]> wrote: > I was quite confused by why Firefox3 identifies itself as 1.9 via > $.brows

  1   2   3   >