[jQuery] Problems with quotes

2009-11-19 Thread heohni
Hi, I have databse entries like: CUBE Streamer 'sloping' ULTEGRA 3 x 10 (99€/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 10 (99€/Woche

[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 i

[jQuery] Re: Syntax Question

2009-11-17 Thread heohni
e. 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 > > > Hi, > > > I have build a function like this: > > > var init_number

[jQuery] Re: BlockUi - blue ring?

2009-11-17 Thread heohni
tmlalso seems to do 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 > > > &

[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: "./includes/ajax.php?action=getBikes"+

[jQuery] Re: BlockUi - blue ring?

2009-11-17 Thread heohni
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)" wrote: > heohni wrote: > &g

[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 someone

[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 = $('#ver_bildname').val().split('.').pop().toLowerCase(

[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) {

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

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

[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: headline $('h2'

[jQuery] jQuery Media Plugin - Question

2009-06-17 Thread heohni
: block;"/> My questions: 1. How can I influence the font-size? 2. How can I change the font color? 3. If the heading is a link, can I set css styles on it? Thanks in advance for any help about this!! Thanks Heohni!

[jQuery] Re: jQuery sIFR Plugin how does it work

2009-05-28 Thread heohni
In the zip file are only 3 js files. But no examples?! The example page is empty? On 28 Mai, 15:03, Donny Kurnia wrote: > heohni wrote: > > I wasn't able to find some instructions / examples how to use this > > plug-in?! > > Is there any body who c

[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] 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 wrote: > $.getScript("url") might help > heohni wrote:Hi, on my contact page, I have some hidden di

[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=api&v=2&key=ABQIp1kkS_NlSeBqN9yg50Bb9hTRRxoX5cqBbtB- sMaIPwRkCNveuxTK0oI3HaFAjNd9OtVNIVqQYPII7g", function(){ alert("Script loaded and executed.");

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

2009-05-27 Thread heohni
untested: $('#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 wrote: > Hi all, > having a simple textbox: > > > > and a checkbox: > > > > how c

[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: {literal} http://maps.google.com/maps? file=api&v=2&key=ABQIp1kkS_NlSeBqN9yg50Bb9hTRRxoX5

[jQuery] 2 links => 1 action

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

[jQuery] Re: Exclude single from whole

2009-05-20 Thread heohni
The former would 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 > wrote: > > &

[jQuery] Exclude single from whole

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

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

2009-05-12 Thread heohni
i < obj.length; i++) { > > if(obj.eq(i).attr("name") == "vfo") { > > // you have found the element do what you need to do > obj.eq(i).addClass("found"); // add class amy be > obj.eq(i).attr( { >  id:"found" // how bout give it an ID ?

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

2009-05-12 Thread heohni
han > one input type ? > > On Tue, May 12, 2009 at 3:02 PM, Mean Mike wrote: > > > $('a.stop').click(function() { > >        var input_id =  $(this).prev().attr("id"); > >         var parent_id = $(this).parents("div:first").attr("id"

[jQuery] find ID of input within a div

2009-05-12 Thread heohni
hi! I have this construct: On click I want to hide the div and empty the input value: $('a.stop').click(function() { var parent_id = $(this).parents("div:first").attr("id"); $('#'+parent_id).hide(); ... How can I find out the id of the input field if I don't know it? I don't think the input ca

[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: I thought I coud re-load it with: $("#captcha").attr("src").replaceWith("inc/captcha/captcha.php");

[jQuery] problem with closing all found divs

2009-04-30 Thread heohni
Hi, my source looks like this: Neu hinzufügen Packstoff und Packmittel aus Aluminium | -- Aluminium - Siegelrandschalen

[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 'hasE

[jQuery] Point of loading the google maps api file

2009-04-29 Thread heohni
Hi, sorry, I may blind...

[jQuery] Need help with menu programming

2009-04-23 Thread heohni
hi, my menu looks like this: home DCT wir über uns philosophie team kompetenzen Beratung / Projektierung Softwareentwicklung

[jQuery] Need help with menu programming

2009-04-23 Thread heohni
hi, my menu looks like this: home DCT wir über uns philosophie team kompetenzen Beratung / Projektierung Softwareentwicklung

[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 i

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

2009-02-27 Thread heohni
is request took about 450ms to 650ms for me. > immediately afterward, another AJAX call is made to: > ajax_add_selected_product_to_session.php?global_check > which takes an average of about 450ms for me. Then upon response of > that, your append is executed. > > This means

[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] Re: Var from Ajax success not defined?

2009-02-26 Thread heohni
great! Thanks a lot! On 26 Feb., 13:40, Mike Alsup 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] Re: Get all inputs but not a specfic one?

2009-02-26 Thread heohni
Thanks!!! On 26 Feb., 12:07, mkmanning wrote: > $('input:checkbox:not(#notwanted)') > > On Feb 26, 2:39 am, heohni > wrote: > > > Hi, > > > is there a way to do this: > > > $("input:checkbox"    -> but not this one id = #notwanted <- ).click > > (function(){ . > > > Thanks a bunch!

[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: Var from Ajax success not defined?

2009-02-25 Thread heohni
t;#list").submit(); }); } But I still can't access the var how_many. I would like to do this: ($("input[name^='paradigm']:checked").length == 0 || how_many == 0) { But the how_many is not set... it's empty on alert. Not undefined, it's

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

2009-02-25 Thread heohni
Sorry for these questions, I am just about to learn the syntax. Thanks! On 25 Feb., 10:57, heohni wrote: > Ok, thanks a lot!! > > On 25 Feb., 10:38, system div wrote: > > >  var how_many_checked= ''; > > > $.ajax({ > >                type: &quo

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

2009-02-25 Thread heohni
                 /* add here what to do on success */ >                        //alert(msg); >                       how_many_checked = msg; > >                } >        }); > alert(how_many_checked); > if(how_many_checked !=undefined) { > do some.....

[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 = ms

[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] Re: Changing colour of table rows

2009-02-24 Thread heohni
> On Tue, Feb 24, 2009 at 6:14 PM, heohni > > wrote: > > > Sorry, but it returns only 0...? > > > On 24 Feb., 14:07, jQuery Lover wrote: > >> > Is there a way to count the rows of a specfic< table > >> > class="resultslist"&g

[jQuery] Re: Changing colour of table rows

2009-02-24 Thread heohni
re when 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

[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 se

[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] on click on a checkbox, highlight complete table row

2009-02-19 Thread heohni
Hi, sorry, for this newbie question: How can I check if this checkbox is checked or not? And how can I avoid this check for this particular checkbox: 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 epan

[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
1.3 on has the @ in selectors deprecated, so the > > following is not valid anymore: > > $("inp...@name=paradigm]") > > > Just remove the @. > > >http://docs.jquery.com/Release:jQuery_1.3#Upgrading > > > On Jan 30, 5:27 am,heohn

[jQuery] Re: Having a problem with checkboxes

2009-02-02 Thread heohni
t; Which version of Jquery are you using? > > From version 1.3 on has the @ in selectors deprecated, so the > > following is not valid anymore: > > $("inp...@name=paradigm]") > > > Just remove the @. > > >http://docs.jquery.com/Release:jQuery_1.3#Upgra

[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 wrote: > Hi, > > I am using this: > > > > $(document).ready(function(){ >         $("#paradigm_all").click(function(){ >                

[jQuery] Having a problem with checkboxes

2009-01-30 Thread heohni
Hi, I am using this: $(document).ready(function(){ $("#paradigm_all").click(function(){ var checked_status=this.checked;$("inp...@name=paradigm]").each (function(){ this.checked=checked_status; }); }); }); to check and u

[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 wrote: > Something like this: > > $(document).ready(function(){ >         $('div.statusimg').click(function() { >                 var status = this; >                 var her_id = sta

[jQuery] Re: Opening a popup question

2008-12-16 Thread heohni
x27;packpilot', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,' + this.id + ',left=150,top=150'); return false; }); }); this way it works. On 16 Dez., 12:53, heohni wrote: > Hi, > > a list of

[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 actua

[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 status.