[jQuery] Re: How to split this?

2008-12-25 Thread Kristaps
if i understood right what you want, then something like this: var mystring = "1/17/52;2/283/-2;3/475/492;4/180/625;5/272/790;"; var nodes = mystring.split(";"); var letters = ''; for(i=0;i 0) { letters = nodes[i].split("/");

[jQuery] problem with submit event

2008-12-25 Thread Kristaps
Hello, i would like to trigger submit event for a form when select option in select box is changed. I also would like to submit the form when the submit button is pressed. The problem is that javascript submit event is not working when there is a submit button. When I remove it everything works l

[jQuery] autocomplete

2008-09-24 Thread Kristaps
Hi, at first I would like to know if there's any reason why documentation of autocomplete have been removed from UI documentation? However my real problem is to change url option dynamicaly, when change event is triggered: my html code: -

[jQuery] ui autocomplete widget with $_post data

2008-08-30 Thread Kristaps
Hello, Let me start with that I understand javascript well, but am not experienced jquery user. So i found jquery UI autocomplete widget, but reading docs I didnt found any options to pass remote data with $_POST method, so I wonder if there is a way to accomplish such thing?