[jQuery] switch between to img; making hover and scaling the img

2009-12-11 Thread heidi
I have tried making this with an hover and mouseover but it seems I am
making a mistake every time, so hope somebody can help.


image1 should when the mouse is over it turn into img2, img2 should
then scale up. and when you remove the mouse, img2 should scale down
and hide, and img1 should come back...


[jQuery] Accordion menue with up to 3 levels

2009-02-03 Thread DCT, Heidi Anselstetter

Hmm, thanks, but in my case I need it for a vertical column.
Any other ideas maybe?

 -Ursprüngliche Nachricht-
 Von: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] Im
 Auftrag von plusz
 Gesendet: Dienstag, 3. Februar 2009 15:35
 An: jQuery (English)
 Betreff: [jQuery] Re: Accordion menue with up to 3 levels
 
 
 On 3 Lut, 14:32, heohni heidi.anselstet...@consultingteam.de wrote:
  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?
 
 
 try this
 
 http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_m
 enu_2/
 
 
 --
 regards,
 www.plusz.pl


[jQuery] Link a complete table row (tr)

2009-01-29 Thread DCT, Heidi Anselstetter
Hi,

I have this html code:

tr style=background-color: {if $simular}#f6d2d2{else}{$background}{/if}
th scope=rowinput type=checkbox name=paradigm 
value={$value.ver_id}/th
td
a href=/product.php?ver_id={$value.ver_id}
img src=/img/uploads/{$value.ver_daten.ver_bildname} id=hidden border=0 
width={$value.img_display_width} /
/a
/td
td valign=top{$value.ver_daten.her_firma}/td
td valign=top{$value.ver_name|highlightsearch}/td
td align=center valign=top{$value.ver_laenge|ifempty:-}/td
td align=center valign=top{$value.ver_breite|ifempty:-}/td
td align=center valign=top{$value.ver_hoehe|ifempty:-}/td
td align=center valign=top{$value.ver_durchmesser|ifempty:-}/td
td align=center valign=top{$value.ver_inhalt|ifempty:-}/td
/tr

I do want to know what I can do to link the tr line to the following url: 
=/product.php?ver_id={$value.ver_id}
Any ideas?

Thanks!
Heidi



[jQuery] swfupload

2009-01-19 Thread DCT, Heidi Anselstetter

Hi Folks,
does anybody has experince with the swfupload tool? I have a version
(from the application demo) uploaded to my server and it works so far. I
can select the pictures to upload and I see the generated thumbnail. Now
I need the possibility to use drag and drop to change the order of the
pictures. As I am not _that_ experienced with Jquery I am looking for
some helping hands here. Hope I will find them :-)
Thanks so far!


[jQuery] AW: Beginner question about toogeling a status

2008-12-10 Thread DCT, Heidi Anselstetter

Hi, is something wrong with my post? Can everybody see it? I am asking as it is 
my first here in this group.
Any help or answers about my topic?

 
 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.
 Therefore I need to parse 2 variables to my script, the user's ID and the
 current status ID.
 
 At the moment my link looks like this:
 img src=/img/online.gif alt= id={$hersteller_daten[her].her_id}
 name={$hersteller_daten[her].status} width=15 height=15 border=0
 class=statusimg style=cursor: pointer;
 
 My Jquery is this at the moment:
 $(document).ready(function(){
   $('img.statusimg').click(function() {
   var her_id = this.id;
   var status = this.name;
   $.ajax({
  type: POST,
  url: /admin/ajax_toogle_manufacturer_status.php,
  data: her_id= +her_id+ status= + status,
  success: function(msg){
alert( Rückgabewert:  + msg );
$('.statusimg').attr(src, /img/offline.gif);
  }
});
   })
 });
 
 For the moment I toogle only active into inactive.
 Because I do not know how to send 2 information (user's ID and the current
 status ID) to my jquery function.
 
 Can you help me with this please?
 Thanks!
 Heidi


[jQuery] Beginner question about toogeling a status

2008-12-09 Thread DCT, Heidi Anselstetter

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.
Therefore I need to parse 2 variables to my script, the user's ID and the 
current status ID.

At the moment my link looks like this:
img src=/img/online.gif alt= id={$hersteller_daten[her].her_id} 
name={$hersteller_daten[her].status} width=15 height=15 border=0 
class=statusimg style=cursor: pointer;

My Jquery is this at the moment:
$(document).ready(function(){
$('img.statusimg').click(function() {
var her_id = this.id;
var status = this.name;
$.ajax({
   type: POST,
   url: /admin/ajax_toogle_manufacturer_status.php,
   data: her_id= +her_id+ status= + status,
   success: function(msg){
 alert( Rückgabewert:  + msg );
 $('.statusimg').attr(src, /img/offline.gif);
   }
 });
})
});

For the moment I toogle only active into inactive.
Because I do not know how to send 2 information (user's ID and the current 
status ID) to my jquery function.

Can you help me with this please?
Thanks!
Heidi