[jQuery] Re: ajaxForm doesnt work in Internet Explorer

2009-08-05 Thread Code Daemon
I'm having the same problem. Works fine in Safari too. On Aug 3, 7:21 am, Shervin Asgari wrote: > Hi. We have added ajax to our forms by using iframe and it works fine in > Firefox. However in Internet Explorer it does not. > > Can anyone spot why it doesnt work?http://pastebin.com/fe04a2f3 > >

[jQuery] Re: Changing the Cell Colors in DatePicker

2009-04-29 Thread Code Daemon
round-color':'', 'color':''}); > > http://docs.jquery.com/CSS/css#namevalue > > On Apr 29, 11:40 am, Code Daemon wrote: > > > I've tried to two different datepicker scripts and what I'm trying to > > do is hilite which dates satisfy

[jQuery] Re: Simple problem with createElement

2009-04-29 Thread Code Daemon
;) >         .addClass("fieldstatus") >         .appendTo('body'); > > ... > > // inside your event handler > $('#fieldstatus') >         .remove() >         .html("sending . . .") >         .appendTo( $(this).parent() ); > > On Tue, Apr 28, 20

[jQuery] Re: datepicker highlight individual days

2009-04-28 Thread Code Daemon
I'm having the same problem. It makes sense to hilite individual days because those days might be important. On Apr 7, 7:04 am, MorningZ wrote: > That doesn't make any sense > > the control by default is looking for the user to choose one > individual day > > On Apr 7, 8:15 am, Danny wrote: >

[jQuery] Changing the Cell Colors in DatePicker

2009-04-28 Thread Code Daemon
I've tried to two different datepicker scripts and what I'm trying to do is hilite which dates satisfy a certain condition. For example, when the page loads I will make a JSON call to the server to return all dates that are holidays, then on the inline datepicker I want to hilite those cells in r

[jQuery] Re: Simple problem with createElement

2009-04-28 Thread Code Daemon
7:10 pm, Code Daemon wrote: > I am creating an element with createElement and then appending it to a > table and then after a few seconds, deleting it with a call to empty > (). This works fine > > The problem seems to be that every time I create the element, I am > creating

[jQuery] Simple problem with createElement

2009-04-28 Thread Code Daemon
I am creating an element with createElement and then appending it to a table and then after a few seconds, deleting it with a call to empty (). This works fine The problem seems to be that every time I create the element, I am creating it with the same id and after a few iterations, it fails. It

[jQuery] Changing Method Values on the Fly

2009-04-01 Thread Code Daemon
I want to dynamically change the function value of the submitHandler: method. How can I do this? Here is some sample code: $('#update_inventory').validate({ submitHandler: function(form) {

[jQuery] $.getScript Must Take .js File?

2009-03-25 Thread Code Daemon
I am using codeigniter and it forms urls like this: http://mydomain/index.php/system/edit_js I'm trying to call $.getScript by going: $.getScript("http://mydomain/index.php/system/edit_js";) but I get a 404 not found error. I pasted the url in my webbrowser and it works just fine. Is there any

[jQuery] [ajaxForm] Loading Dynamic Data Best Practices

2009-03-24 Thread Code Daemon
RIght now I have a page that has a search box that uses the autocomplete plugin. When the form is submitted using the ajaxForm plugin, the server sends back HTML code with jQuery mixed in. This seems to work alright in Firefox, but in IE the javascript goes unnoticed. The results are sometimes unp

[jQuery] Re: load() not loading my dynamic page

2009-02-19 Thread Code Daemon
- its rather wrong formed html. Did you use Id or > Name property to identify webpart? > > On 2/19/09, Code Daemon wrote: > > > > > > > Seems more specifically that Firefox doesn't like objects > > being loaded dynamically. I'm assuming the jQuery

[jQuery] Re: load() not loading my dynamic page

2009-02-18 Thread Code Daemon
Seems more specifically that Firefox doesn't like objects being loaded dynamically. I'm assuming the jQuery load() method is ultimately a wrapper for the innerHTML property? Looks like, at the very least I'm going to have to omit all my tables. On Feb 18, 10:56 pm, Code Daem

[jQuery] Re: load() not loading my dynamic page

2009-02-18 Thread Code Daemon
Feb 5, 2009 at 7:42 PM, eagleon wrote: > > > I've been experiencing the same thing! I hop we can figure out a > > workaround... > > > This also applies to the $(document).ready() event... > > > does not work ondynamicpages. > > > On Feb 5

[jQuery] [jquery ui tabs]

2009-02-05 Thread Code Daemon
I have two sets of tabs in my page and I want them to look entirely different. Is this possible?

[jQuery] Re: load() not loading my dynamic page

2009-02-05 Thread Code Daemon
joc...@yahoo.com >  [image: Google Talk:] framejoc...@gmail.com [image: Y! messenger:] > frameJockey > > 2009/2/5 Code Daemon > > > > > When I use load(), it works fine for static pages but doesn't seem to > > work for my dynamic page. > > > This is what I'

[jQuery] load() not loading my dynamic page

2009-02-05 Thread Code Daemon
When I use load(), it works fine for static pages but doesn't seem to work for my dynamic page. This is what I'm doing: $('#mydiv').load('my/page'); FireBug shows that the response is coming back just as it should. Any thoughts?

[jQuery] Re: [autocomplete] Problem with Scrolling IE 7

2008-12-16 Thread Code Daemon
SS-wise, the FF list > has an attribute of overflow:auto and the same list has an attribute of > overflow:hidden. > > JK > > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of Code Daemon > Sent: Sunday, No

[jQuery] [autocomplete] Formatting Dropdown Suggestions as Table

2008-12-03 Thread Code Daemon
Is it easily possible to reformat the dropdown suggestions in a table format. In the form of: [search val1] [description 1] [search val2] [description 2] [search val3] [description 3] So that they line up in nice columns, and also only highlit the search valX and not the description?

[jQuery] [autocomplete] Problem with Scrolling IE 7

2008-11-30 Thread Code Daemon
Konqueror and FF2 work just fine but the side scrollbar doesn't appear when I try this basic test in IE 7.0.5730.13. The scrollbar does not work here: http://kittyslayer.ucdavis.edu/jquerytest/system/application/views/jquerytest.php However, the demo site actually works: http://kittyslayer.ucdav