[jQuery] Re: Accessing value of a dynamic added input

2010-01-10 Thread -null-
Went back and double checked all the code. You were right about it being some other issue Brian, there was some other jquery removing the form element just before I was trying to get the value from it. Thanks

[jQuery] Re: Accessing value of a dynamic added input

2010-01-09 Thread -null-
The $(this).val() line does work, it's the line before I'm having trouble with. Before the select there is a hidden input that I also need the value of but no matter what selector I've tried matchup is always undefined.

[jQuery] Accessing value of a dynamic added input

2010-01-09 Thread -null-
I'm adding an input and select box to a div by setting the div's html. I then attach a change event to the select which posts to a php page using ajax. I'm having a problem however accessing the value of the input from the change event. This is the event. $('#' + popup.popupId + ' select').chan

[jQuery] Re: form.submit not function error jquery form plugin

2010-01-08 Thread -null-
sigh...several hours later I find out it's because the submit button has the id "submit" :(

[jQuery] form.submit not function error jquery form plugin

2010-01-08 Thread -null-
I'm trying to get an upload popup working with the jQuery form plugin (http://jquery.malsup.com/form/). When I click a link I load a form html from the server and add it to a container div by setting the div's html attribute. I then attach a submit handler to the form so I can call the ajaxSubmit

[jQuery] Re: clockpicker plugin doesn't show

2009-10-23 Thread -null-
nvm, figured it out.

[jQuery] clockpicker plugin doesn't show

2009-10-22 Thread -null-
I've inherited some code that uses the clock picker plugin however it doesn't seem to work in IE 8 and Firefox 3.5. This is the code for the picker. $('') .attr('alt', 'clockpicker') .attr('src', '/community/tournamentsystem/images/clock.png') .att

[jQuery] Re: Cycle using own thumbnails

2009-06-29 Thread -null-
han > slideshttp://www.malsup.com/jquery/cycle/pager4.html > -null- wrote:I'm using the cycle plugin to create a slideshow of highlights. > So far I have the slides automatically fading between each other but I'd also > like to have thumbnails that when hovered jumps the slide

[jQuery] Cycle using own thumbnails

2009-06-29 Thread -null-
I'm using the cycle plugin to create a slideshow of highlights. So far I have the slides automatically fading between each other but I'd also like to have thumbnails that when hovered jumps the slideshow to the associated slide. Using pager and pagerEvent I can do this but I don't know how to us

[jQuery] Re: should I use .txt or a database to retrieve data from it every second

2009-05-20 Thread Null
Comet (server-push technology) is that the other way around? So normaly with jQuery you ask the server every sec to check for new data and then display it, but with Comet, you don't do the request but new data is automaticly pushed and displayed when the server received new data? Do I understand t

[jQuery] should I use .txt or a database to retrieve data from it every second

2009-05-19 Thread Null
Hi all, To learn some jquery, I am writing some sort of chatbox. My questions is: what can I use best to store and retrieve the chat text?? Is it good to store the chat text in the database, or is it better to save it into a txt file? Ofcourse only new added chat lines will be taken and displayed

[jQuery] Ajax form submit.

2008-10-02 Thread null
Hi all, I´m using jquery to post some Form with Ajax, but it doesn´t send the name of the 'submit' button that was clicked. WIth normal form submission without AJAX, the browser always send the name and value of the submit button. My web framework, needs this parameters, to find out if the butt

[jQuery] Ajax Form submit.

2008-10-02 Thread null
Hi all, I´m using jquery to post some Form with Ajax, but it doesn´t send the name of the 'submit' button that was clicked. WIth normal form submission without AJAX, the browser always send the name and value of the submit button. My web framework, needs this parameters, to find out if the butt

[jQuery] if serialize(s) returns empty, show: 0

2008-07-13 Thread Null
Hi, I have the following function: function serialize(s) { serial = $.SortSerialize(s); document.getElementById('serial').value=serial.hash.replace(/sort3\ [\]=/gi, '').replace(/&/g, ','); }; This returns a string like: 1,2,4,6,8 It is possible that there is nothing to sortserialze, so i

[jQuery] Re: jCarousel with text

2008-05-11 Thread Null
Any 1 who can help me with this? The idea is to have pictures from a database and the corresponding text (which belongs to it), placed underneeth each other in a html file. So: [pic] [pic] texttext etc Thanks

[jQuery] jCarousel with text

2008-05-04 Thread Null
Hi, I am trying to get some text underneeth each image. I thought it would work with the excample profided in de zip (php excample), but I cant seem to get it to work. This is the code the php file must gather: getIntTableRows($fields="*", $from="prop_img", $where="p_id=".$res['id']."

[jQuery] Re: get a hash into a form (interface)

2007-12-18 Thread Null
g and hopefully help you debug > it. Or, if you're not able to do that, create a pastie of your whole page: > > http://paste.pocoo.org/ > > - Richard > > On Dec 14, 2007 3:21 PM, Null <[EMAIL PROTECTED]> wrote: > >> >> >> I am using the followi

[jQuery] Re: get a hash into a form (interface)

2007-12-16 Thread Null
No 1 Plz help I am really stuck :( Null wrote: > > I am using the following interface demo page: > http://interface.eyecon.ro/demos/sort.html where I want to put the hash in > a input field. I need the hash from the sort 3 (3rd column). > > Okay this is a part of th

[jQuery] Test

2007-12-14 Thread Null
This is a test if everything works! -- View this message in context: http://www.nabble.com/Test-tp14339766s27240p14339766.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] get a hash into a form (interface)

2007-12-14 Thread Null
ction serialize(s) { serial = $.SortSerialize(s); $('#sort3').val(serial.hash); }; --Code-end- So I am out of ideas :( Hope some1 can help! Greetz Null -- View this message in context: http://www.nabble.com/get-a-hash-into-a-fo

[jQuery] Re: autocomplete caches against my will

2007-07-30 Thread (null)
I just found a "solution" to the problem. I changed in the autocomplete code the function which reads the settings. options.matchSubset = options.matchSubset || 1; to options.matchSubset = 0; I know this isn't a nice thing to do, but it works! Don't ask me why, but it does. If I did accidently o

[jQuery] Re: autocomplete caches against my will

2007-07-30 Thread (null)
m/Plugins#Forms they are the same. Please explain! On 30 Jul., 13:04, "Dylan Verheul" <[EMAIL PROTECTED]> wrote: > On 7/30/07, (null) <[EMAIL PROTECTED]> wrote: > > > To be honest, I don't see where I used wrong values. > > cacheLength is a numb

[jQuery] Re: autocomplete caches against my will

2007-07-30 Thread (null)
m/Plugins#Forms they are the same. Please explain! p.s.: sorry if I posted this now twice, my internet connection broke the moment I hit the send button On 30 Jul., 13:04, "Dylan Verheul" <[EMAIL PROTECTED]> wrote: > On 7/30/07, (null) <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: autocomplete caches against my will

2007-07-30 Thread (null)
;Dylan Verheul" <[EMAIL PROTECTED]> wrote: > Use a correct value for cacheLength and matchSubset > (see docs for the original at athttp://www.dyve.net/jquery/autocomplete.txt) > > Tip: Use the latest and greatest > autocompleter:http://bassistance.de/jquery-plugins/

[jQuery] autocomplete caches against my will

2007-07-27 Thread (null)
Hi everybody, I'm trying to use autocomplete (this one: http://www.pengoworks.com/workshop/jquery/autocomplete.htm) to suggest street names to the user while he types them. Because there can be quite a lot streets I decided to limit the result to 10 entries server-side. Now the problem: Let's ass