[jQuery] Problems with quotes

2009-11-19 Thread heohni
Hi, I have databse entries like: CUBE Streamer #039;sloping#039; ULTEGRA 3 x 10 (99euro;/Woche) I use this text with jquery and I am writing this text into a div. When reloading my page, because of a form validation, the text gets automatically like this: CUBE Streamer \'sloping\' ULTEGRA 3 x

[jQuery] Problems with writing into input fields

2009-11-18 Thread heohni
Hi, I have a small script which should write me into input hidden fields some values: $('input[name=category_id]').val(c_chosen_id); $('input[name=category_name]').val(cat_name); My problem now is, that it seams, the value get's written, because I can alert it, bit it's not getting written into

[jQuery] BlockUi - blue ring?

2009-11-17 Thread heohni
Hi, I am using the BlockUI in 2 apps. In the first, The overlay works fine, but as soon as I go with my mouse outside the div, into the grey area, my mouse pointer turns to a blue ring (ring of death). In my second, I have the blue ring also within my div area. What am I doing wrong? Can

[jQuery] Re: BlockUi - blue ring?

2009-11-17 Thread heohni
the same behavoir on all browsers, so I guess, you will see the same effect? And the same happen on our localhost example, just with the difference that there I see the blue ring also inside the div area. On 17 Nov., 09:30, Jonathan Vanherpe (T T NV) jonat...@tnt.be wrote: heohni wrote: Hi, I am

[jQuery] Syntax Question

2009-11-17 Thread heohni
Hi, I have build a function like this: var init_number_of_bikes = function(){ // Request all avail. bikes var urlextend = findBikes(); $.ajax({ type: get, url:

[jQuery] Re: BlockUi - blue ring?

2009-11-17 Thread heohni
this. So I guess this is just a Windows thing. It doesn't stop you from using your browser or anything so it's mostly a cosmetic issue. You could try using something other than blockui to show a modal dialog. Jonathan heohni wrote: Well, we are only on localhost right now, but one

[jQuery] Re: Syntax Question

2009-11-17 Thread heohni
. If someone calls the function and gives no value, it'll be empty (empty is false when used as a boolean in JavaScript). Michel Belleville 2009/11/17 heohni heidi.anselstet...@consultingteam.de Hi, I have build a function like this: var init_number_of_bikes = function

[jQuery] Solution wanted, to display an image on mousover within select option

2009-11-02 Thread heohni
Hi, The following we try to get working: A html select box, with about a certain number of option elements. On mouseover of one element, we want to open a div aside the select to show an image. Is something like this possible? And if yes - how? Thanks! Bye!!

[jQuery] get image size?

2009-09-08 Thread heohni
I haveing an issue with this: $(#ver_bildname).change(function () { var width = $(this).width(); alert(width); }); returns always 272? Whatever picture I try, the answer is alsway 272. $(this).val(); returns me the correct name, var ext =

[jQuery] need a hand with it, show/hide stuff

2009-06-30 Thread heohni
of these loading gifs? I am looking forward to find help in this group :-) Kind regards from a very sunny Germany! Bye Heohni

[jQuery] JAlert Question

2009-06-30 Thread heohni
using a jAlert(), is there somehow a way to find out when the user has clicked the ok button? I saw the $(#popup_ok).focus().keypress( function(e) { if( e.keyCode == 13 || e.keyCode == 27 ) $(#popup_ok).trigger ('click'); }); and I added $(#popup_ok).live('click', function(e) { if(

[jQuery] jquery sifr plugin works not in Firefox 2.0

2009-06-18 Thread heohni
I have set a website up using the jquery sifr plugin. In all new browsers(IE7,8, FF3, Opera and Safari 3,4) is works fine! Even in IE6 - where the plugin doesn't work, it's simple not recognized and the normal text is shown. Only in FF2, no text at all is shown. Here is my code: h2headline/h2

[jQuery] jQuery Media Plugin - Question

2009-06-17 Thread heohni
about this!! Thanks Heohni!

[jQuery] jQuery sIFR Plugin how does it work

2009-05-28 Thread heohni
I wasn't able to find some instructions / examples how to use this plug-in?! Is there any body who could help me out?

[jQuery] Loading google map js on a certain point of action

2009-05-27 Thread heohni
Hi, on my contact page, I have some hidden divs. One is for a google map. This div is only shown when the user has clicked to open the div. As I am working with smarty my template looks like this: span id=gmap {literal} script src=http://maps.google.com/maps?

[jQuery] Re: Make textbox visible if checkbox is selected

2009-05-27 Thread heohni
untested: input id=myText name=myText type=text / $('#myText').hide(); // on default, hide textbox $('#myCheckbox').click(function(){ var checked_status = this.checked; if(checked_status == true) { $('#myText').show(); } }); On 27 Mai, 11:30, ciupaz luigi.zambe...@gmail.com wrote: Hi all,

[jQuery] Re: Loading google map js on a certain point of action

2009-05-27 Thread heohni
I made now this: if(item == #gmap){ $.getScript(http://maps.google.com/maps? file=apiv=2key=ABQIp1kkS_NlSeBqN9yg50Bb9hTRRxoX5cqBbtB- sMaIPwRkCNveuxTK0oI3HaFAjNd9OtVNIVqQYPII7g, function(){ alert(Script loaded and executed.);

[jQuery] Re: Loading google map js on a certain point of action

2009-05-27 Thread heohni
This was helping and solving my problem: http://groups.google.com/group/Google-Maps-API/browse_thread/thread/8863f57e0904a221/3f1577e7abed928b On 27 Mai, 12:22, Charlie charlie...@gmail.com wrote: $.getScript(url) might help heohni wrote:Hi, on my contact page, I have some hidden divs. One

[jQuery] 2 links = 1 action

2009-05-26 Thread heohni
Hi! currently I have this: $('.contenttitleh1a').click(function() { ... Is there a way to say $('.contenttitleh1a'). or $('.itema'). click(function() { .? It's just that I have 2 different links to click but behind the same action... Thanks!

[jQuery] Re: Exclude single td from whole tr

2009-05-20 Thread heohni
be $(tr[link] td:not(:has(:checkbox))) I believe, and is the easiest. Hopefully others can chime in about which is best or perhaps yet another solution. aquaone On Tue, May 19, 2009 at 07:45, heohni heidi.anselstet...@consultingteam.dewrote: I found a good solution to make a complete table

[jQuery] Exclude single td from whole tr

2009-05-19 Thread heohni
I found a good solution to make a complete table row clickable: tr link=/folder/here.php. $(tr[link]).bind(click, function(){ var link = $(this).attr(link); window.location.href = link; }); Only problem in my case: My tbale has as first td a checkbox to select my products.

[jQuery] find ID of input within a div

2009-05-12 Thread heohni
hi! I have this construct: div id=box_vfoinput type=text name=neu_vfo id=neu_vfo class=textInputa href=#stop class=stopimg src=../img/ delete_edit.gif alt= width=16 height=16 border=0/a/div On click I want to hide the div and empty the input value: $('a.stop').click(function() { var parent_id =

[jQuery] Re: find ID of input within a div

2009-05-12 Thread heohni
);         var parent_id = $(this).parents(div:first).attr(id);        $('#'+parent_id).hide(); } On May 12, 8:48 am, heohni heidi.anselstet...@consultingteam.de wrote: hi! I have this construct: div id=box_vfoinput type=text name=neu_vfo id=neu_vfo class=textInputa href=#stop class

[jQuery] Re: find ID of input within a div

2009-05-12 Thread heohni
to do obj.eq(i).addClass(found); // add class amy be obj.eq(i).attr( {  id:found // how bout give it an ID ? }); } } }); On Tue, May 12, 2009 at 3:50 PM, heohni heidi.anselstet...@consultingteam.de wrote: In my case I used now: var parent_id = $(this).parents(div:first).attr(id

[jQuery] refresh image?

2009-05-06 Thread heohni
Hi, after sending a form, I would like to reload the form in order to send a new message. Therefore I was resetting the old form, but I need to call a new captch image. It's currently like this: img src=inc/captcha/captcha.php id=captcha alt= border=0 style=float:left; / I thought I coud

[jQuery] problem with closing all found divs

2009-04-30 Thread heohni
Hi, my source looks like this: table width=100% border=0 id=edit_categories tr td colspan=3 align=righta href=/admin/index.php? action=categoriesfunction=addsub=addNeu hinzufügen/a br / br / /td /tr tr style=background-color: #FF; td span class=name_1

[jQuery] Point of loading the google maps api file

2009-04-29 Thread heohni
Hi, sorry, I may blind... span id=gmap style=display:none script src=http://maps.google.com/maps?file=apiv=2key= stuff to load the map details /span a class=plainPopup href=#gmapshow map/a When I load the page, the google api file is also loading, even I don't need it. I

[jQuery] var set outside ajax call is not reachable

2009-04-29 Thread heohni
Hi, for some reason I don't the problem... This is part of a form check. I check the captcha code and it returns me a 0 - the test has failed. I set = hasError = true; I alert hasError and it returns false and therefore the next ajax function runs, which is not what I want... Why is the

[jQuery] Need help with menu programming

2009-04-23 Thread heohni
hi, my menu looks like this: div id=menu ul class=m_home{if !$smarty.get.l}active_main{/if} lidiva href=/home/a/div/li /ul ul class=m_company lidivDCT/div ul {if $smarty.get.l == 2}class=active_sub{/if} lia href=/?l=2amp;p=wir-ueber-unswir

[jQuery] Need help with menu programming

2009-04-23 Thread heohni
hi, my menu looks like this: div id=menu ul class=m_home{if !$smarty.get.l}active_main{/if} lidiva href=/home/a/div/li /ul ul class=m_company lidivDCT/div ul {if $smarty.get.l == 2}class=active_sub{/if} lia href=/?l=2amp;p=wir-ueber-unswir

[jQuery] window.location get a var and its value

2009-04-02 Thread heohni
Hi, I have at a certain moment this in my address bar: .search.php? search_done=1. I need to extract the search_done because I want to pass this to a function which should check if search_done equals 1 or not. Anbody with a hint for me? Thanks

[jQuery] what name have 2 dropdowns where the second content is depend from the first selection?

2009-04-01 Thread heohni
I am trying to find some example codes using mysql data, but can't find anything right now, for what should I search? Sorry for this really uncool question

[jQuery] [treesize] Need prof. help with treesize menu

2009-03-17 Thread heohni
Hi, I need a treesize guru to help me setting the treesize up. I tried so hard the last weeks, but the css issue is going to kill me... And I need to finish this asap! So please! If there is someone arround who is a real treesize crack! Then please email me to get this job done! Thanks!

[jQuery] Job - Need help with treeview menu

2009-03-03 Thread heohni
Hi, is there somebody I can hire for helping setting up my treeview menu? Basically I have problem with setting the css right. Web: http://packpilot.s15312582.onlinehome-server.info/index.php?f=packpilot The icons are not at the right position and the menu is not correctly expanable. If you#re

[jQuery] Re: Ajax reacts very slow...?

2009-02-27 Thread heohni
I see.. But is this normal? I do not have any database queries in these ajax files. Only session handling. For example to add the prouct and to check the array size: if(!$_POST['ver_id'] isset($_POST['postdata'])){ $verids = explode(,,$_POST['postdata']); foreach($verids as

[jQuery] Get all inputs but not a specfic one?

2009-02-26 Thread heohni
Hi, is there a way to do this: $(input:checkbox- but not this one id = #notwanted - ).click (function(){ . Thanks a bunch!

[jQuery] Re: Get all inputs but not a specfic one?

2009-02-26 Thread heohni
Thanks!!! On 26 Feb., 12:07, mkmanning michaell...@gmail.com wrote: $('input:checkbox:not(#notwanted)') On Feb 26, 2:39 am, heohni heidi.anselstet...@consultingteam.de wrote: Hi, is there a way to do this: $(input:checkbox    - but not this one id = #notwanted - ).click (function

[jQuery] Re: Var from Ajax success not defined?

2009-02-26 Thread heohni
great! Thanks a lot! On 26 Feb., 13:40, Mike Alsup mal...@gmail.com wrote:  alert(typeof(how_many));  is string alert(how_many==undefined); is false This may help: http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_get_and_us...

[jQuery] Ajax reacts very slow...?

2009-02-26 Thread heohni
Hi, I have this function build: $.ajax({ type: POST, url: /ajax_add_selected_product_to_session.php?global_check, success: function(msg){ /* add here what to do on success */

[jQuery] Building functions (newbie question)

2009-02-25 Thread heohni
Hi, I have some jquery code within the $(document).ready(function() { $(input:checkbox).click(function(){ check if checked or unchecked ... do some ajax stuff . do some css class exchange stuff .. }); }); (This is the function to manipulate

[jQuery] Var from Ajax success not defined?

2009-02-25 Thread heohni
Hi, $.ajax({ type: POST, url: /ajax_add_selected_product_to_session.php, success: function(msg){ /* add here what to do on success */ //alert(msg); var how_many_checked = msg;

[jQuery] Re: Var from Ajax success not defined?

2009-02-25 Thread heohni
on success */                        //alert(msg);                       how_many_checked = msg;                }        }); alert(how_many_checked); if(how_many_checked !=undefined) { do some.. } On Wed, Feb 25, 2009 at 5:31 PM, heohni

[jQuery] Re: Var from Ajax success not defined?

2009-02-25 Thread heohni
., 10:57, heohni heidi.anselstet...@consultingteam.de wrote: Ok, thanks a lot!! On 25 Feb., 10:38, system div divsys...@gmail.com wrote:  var how_many_checked= ''; $.ajax({                type: POST,                url: /ajax_add_selected_product_to_session.php,                success

[jQuery] Re: Var from Ajax success not defined?

2009-02-25 Thread heohni
== 0 || how_many == 0) { But the how_many is not set... it's empty on alert. Not undefined, it's empty.. *i am lost...* On 25 Feb., 11:15, system div divsys...@gmail.com wrote: you try   alert(check_how_many_products_checked());  //var x = ; On Wed, Feb 25, 2009 at 6:11 PM, heohni

[jQuery] Need help with checking checkboxes

2009-02-24 Thread heohni
Hi, I have a list of search results. Each result has its own checkbox to select a product. Each checked product ID gets saved to the session via Ajax. Fine so far, it works already. But I also have a check / uncheck all checkbox. That means, when I check all, I need to send all displayed (not

[jQuery] Changing colour of table rows

2009-02-24 Thread heohni
Hi, on a table list of results (amount of rows = unknown) I want to change the row colour by adding / removing the class name (class=highlighttr). As my list is already 2 coloured (class=row1 and class=row2), I am checking the current, prev and next class name of the parent tr element to set

[jQuery] Re: Changing colour of table rows

2009-02-24 Thread heohni
a checkbox was clicked? Use this code to find out how many table rows are there in the table: $('#resultslit tbody tr').length More about it here:http://jquery-howto.blogspot.com/2008/12/howto-find-out-how-many-elem... On Tue, Feb 24, 2009 at 5:47 PM, heohni heidi.anselstet...@consultingteam.de

[jQuery] Re: Changing colour of table rows

2009-02-24 Thread heohni
-howto.blogspot.com On Tue, Feb 24, 2009 at 6:14 PM, heohni heidi.anselstet...@consultingteam.de wrote: Sorry, but it returns only 0...? On 24 Feb., 14:07, jQuery Lover ilovejqu...@gmail.com wrote: Is there a way to count the rows of a specfic table class=resultslist or even better the TR elements

[jQuery] on click on a checkbox, highlight complete table row

2009-02-19 Thread heohni
Hi, sorry, for this newbie question: input type=checkbox name=paradigm[] value={$value.ver_id} / How can I check if this checkbox is checked or not? And how can I avoid this check for this particular checkbox: input type=checkbox id=paradigm_all / Thanks so much!!

[jQuery] [treeview] newbie question

2009-02-11 Thread heohni
Hi, I just got it done to implement my treeview menu: http://packpilot.s15312582.onlinehome-server.info/?f=packpilot I know, there are still some debug infos in the [ ] and the css is not right. But what I want to know today is, how can I setup my menu to show in general the first 2 levels

[jQuery] [treeview]

2009-02-06 Thread heohni
Hi, how can I achieve to have the fisrt 2 levels of my menu always open on page load? Thanks Heidi

[jQuery] Accordion menue with up to 3 levels

2009-02-03 Thread heohni
Hi, I am wanting to use the jquery accordion menu with a structure up to 3 levels. Is that a) possible and b) has somebody a demo / tutorial for this kind of menu for me? Thanks! Heidi

[jQuery] Re: Having a problem with checkboxes

2009-02-02 Thread heohni
Sorry, that's not working for me: $(document).ready(function(){ $(#paradigm_all).click(function(){ var checked_status=this.checked;$(input[name^='paradigm']).each (function(){ this.checked=checked_status; }); }); }); with

[jQuery] Re: Having a problem with checkboxes

2009-02-02 Thread heohni
Thanks! That's solving a lot!! On 31 Jan., 17:41, Beres Botond boton...@gmail.com wrote: Yes you can use : input type=checkbox name=paradigm[] value={$value.ver_id} / Just modify your jquery code as well: var checked_status=this.checked;$(input[name^='paradigm']).each (function(){        

[jQuery] Having a problem with checkboxes

2009-01-30 Thread heohni
Hi, I am using this: input type=checkbox name=paradigm value={$value.ver_id} / $(document).ready(function(){ $(#paradigm_all).click(function(){ var checked_status=this.checked;$(inp...@name=paradigm]).each (function(){

[jQuery] Re: Having a problem with checkboxes

2009-01-30 Thread heohni
Does it work, to write all checked id's into a hidden field? Which then gets submitted? On 30 Jan., 16:27, heohni heidi.anselstet...@consultingteam.de wrote: Hi, I am using this: input type=checkbox name=paradigm value={$value.ver_id} / $(document).ready(function

[jQuery] Re: Beginner question about toogeling a status

2008-12-22 Thread heohni
Hi Brian! your idea was great! Thanks! It works all very well expect one little piece On 11 Dez., 18:50, brian bally.z...@gmail.com wrote: Something like this: $(document).ready(function(){         $('div.statusimg').click(function() {                 var status = this;                

[jQuery] Re: Opening a popup question

2008-12-16 Thread heohni
].ver_daten.ver_bildname} id=hidden border=0 width={$products[item].img_display_width} / /a this way it works. On 16 Dez., 12:53, heohni heidi.anselstet...@consultingteam.de wrote: Hi, a list of database items, each item has a picture which I want to open onclick as popup. a href

[jQuery] Beginner question about toogeling a status

2008-12-11 Thread heohni
Hi, this is my first post, I hope I do everything right! I have a list of users and for each user I have a little img showing the actual status which is eather - active - in-active - active but no login On click on this little img icon, I want to call a ajax php script which toogles the

[jQuery] Re: Beginner question about toogeling a status

2008-12-11 Thread heohni
Hi, is there someone who can give me a hand with that topic? Please? On 11 Dez., 16:30, heohni [EMAIL PROTECTED] wrote: Hi, this is my first post, I hope I do everything right! I have a list of users and for each user I have a little img showing the actual status which is eather - active