search for: onmouseout

Displaying 20 results from an estimated 39 matches for "onmouseout".

2006 Jun 20
4
Invoking MouseOver using link_to tag ?
...tion => "logout"%> Note: The controller and action should also be there as above. ie invoke the controller function on click of the link and invoke a local JS function on MouseOver of the text ? On a normal href we do something like this rt? for invoking the onMouseover and onMouseout?. But i want to do the same thing but with <%= link_to %> as above ? <a href="http://www.mywebsite.com" onMouseover="myInJsFunction()" onMouseout="myOutJSFunction()">TestingMouseOverEvents</a><br /> Thank You Dinesh -- Posted via http://ww...
2006 Jan 11
0
RE: Event.observer - unordered list problems
...id''ed with a predictable pattern. For instance, in my project, if a parent div''s id is "Div1", all children elements'' id''s are as such; "Div1_Child1", "Div1_Child2", etc.. Then in my mouseout handlers I can do something like this... onMouseOut: function(event) { if (event.toElement.id.lastIndexOf(event.fromElement.id) != -1) { // do mouseout stuff } } 2) The other way is to use a timer mechanism instead of the mouseout. This is a bit imperfect though, as you could potentially move...
2006 Jan 11
0
RE: RE: Event.observer - unordered list problems
...id''ed with a predictable pattern. For instance, in my project, if a parent div''s id is "Div1", all children elements'' id''s are as such; "Div1_Child1", "Div1_Child2", etc.. Then in my mouseout handlers I can do something like this... onMouseOut: function(event) { if (event.toElement.id.lastIndexOf(event.fromElement.id) != -1) { // do mouseout stuff } } 2) The other way is to use a timer mechanism instead of the mouseout. This is a bit imperfect though, as you could potentially move yo...
2006 Jun 16
5
Menu using Scriptaculous Effects = OnMouseOver bug
...ation: 0.15 }); return false; } function mout(cible) { new Effect.BlindUp(cible, { duration: 0.15 }); return false; } // ]]> </script> </head> <body> <div class="menu" id="accueil" onmouseover="mover(''accueilhover'');" onmouseout="mout(''accueilhover'');"> <a href="#"> Accueil </a> </div> <div class="menu" id="accueilhover" style="display: none;"> </div> <div class="menu" id="organisme"...
2009 Jul 20
0
No subject
...096c193048a2e8bdc Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable <span id=3D"result_box" class=3D"long_text"><span title=3D"Boa tarde." onmo= useover=3D"this.style.backgroundColor=3D&#39;#ebeff9&#39;" onmouseout=3D"th= is.style.backgroundColor=3D&#39;#fff&#39;">Good afternoon. <br> <br></span><span title=3D"Obrigado =E0 todos pelas respostas." onmouseover= =3D"this.style.backgroundColor=3D&#39;#ebeff9&#39;" onmouseout=3D"this.styl=...
2006 Apr 07
13
Pop up menus - any ideas?
I''ve got a menu in which I have all of my categories as links. Each category also has subcategories. I want to set it up so when you mouse over the category the subcategories will pop up (to the right of the main list, but that''s just CSS). This is what I have so far: <% for category in @categories %> <a href="#"
2005 Oct 16
1
blindup and blindup confusion
here''s a basic question. i have an h2 element and i want onmouseover to show a div using blinddown; i also expect onmouseout of the mentioned div (but not h2) to have effect blindup to get rid of the div. so i set up: <h2 id = "show" class="show">Show div</h2> <div id = "out" class = "out" style="display:none">some content</div> using behavior...
2006 Jan 06
3
image replacement (new Effect.*****) problem
...of the samll image tag. Thanks again for any help! <%= image_tag url_for_file_column(product, "image_url"), { "class" => "small_product", "onMouseOver" => "this.className = ''product_hover''", "onMouseOut" => "this.className = ''small_product''", "onClick" => "new Effect.Shake(this); new Effect.Fade(''large_image''); document.getElementById(''large_image'').style.display = ''inline...
2006 Jul 10
2
inline javascript in partials
...k ||= click_fn %> <%= image_tag("/images/tfs/en-#{button}.png", { :onclick => onclick, :name => "submit_#{button}", :width => "32px", :height => "32px", :onmouseover => "setStatusMessage(''#{button} files'');", :onmouseout => "setStatusMessage('''');" }) %>
2006 Jan 15
13
Hotlinking an entire row in an HTML table
Hi, This seems simple but I cant get it to work... I have a table with 4 or 5 columns and 20-30 rows. I''d like to have the ability to click anywhere in a particular row to fire an action, such as bringing up a "Details" page for the clicked row. This would eliminate the need to generate a "Details" link at the end of every row, which is what I have now and looks
2006 Jul 25
1
Feeling silly
...t should be easy. I''ve been searching, perhaps using wrong terms, and still not coming up with anything. Here''s what I''m trying to do: <div class="button" onMouseOver=''this.className="button_hover"''; onMouseOut =''this.className="button"''; onClick =''this.className="button_click"; open("/main/test");''> Clear Event </div> Where the div is a homemade css button. on...
2005 Jul 19
1
Grow (and shrink)
Hi, When is the Scale effect going to go back to being able to return an item to its original size? I loved that onmouseover, onmouseout combo. This is a terrific lib-- has made rethink javascript top-to-bottom. AR
2011 Mar 03
6
Show a value in view
...="message" id="message" maxlength ="400" style="overflow:auto;width:100%;height: 56px ;"onkeyup="checkPostFieldLength(message,''remaining'', 400);"onkeydown="checkPostFieldLength(message,''remaining'', 400);"onmouseout="checkPostFieldLength(message,''remaining'', 400);">@< %=h @posted_by_name %>:</textarea> The text within <% %> is the username I am trying to paste by default inside the text area However when I run the application,I only get" @:" in the te...
2006 Jan 29
1
Works with iframe, but not ajax... ?!?
...ajax version the popup menu disappears with the next ajax call... Curiously, however, with the iframe implementation of the table refresh, the popup menu layer persists through subsequent refreshes until, as it is set up to do, the div''s visibility is reset to "hidden" by an onmouseout event. As the persistence/disappearance of the menu layer would seem to be a DOM thing, I don''t understand why this behavior differs between the two techniques. As it''s quite important that the menu not disappear until the user has made a choice, I could just go back to the i...
2006 Jan 16
4
how di i stop a running effect?
...ent on hovering an element(-> tooltip behavior), but when i''m using Effect.Appear/Effect.Fade both effects will continue to play and overlap each other, resulting in unpredictable behavior. <code> <button onmouseover="Effect.Appear(''test_div2'')" onmouseout="Effect.Fade(''test_div'')">TRIGGER</button> <div id="test_div" style="width: 100px; height: 100px; background-color: #FF33CC;">TEST</div> </code> So i need some advice how to stop a running effect for an element, so i can...
2005 Oct 31
2
Inplaceeditor and a tooltip on mouserollover?
on mouseover when using inplaceeditor it highlights in yellow. Great. However, I want to also show a tooltip inside this div on mouseover. Specifically, when a user is over editable text, besides the yellow background, I want to display next to it a "delete" link. One of the things I''ve tried is this: <script language="JavaScript"> new
2006 Jan 13
10
[Announcement] Google: Evil or Not?
"Google: Evil or Not?" is my first Rails webapp and I''ve just made it public at http://evilornot.info Do you still believe the ?Do no evil? Google mantra? Do you think Google Book Search, the AOL deal, and Larry and Sergey?s 767 point to Google losing it?s pristine morality and turning over to the dark side? Now you can discover what the world thinks and contribute your
2006 Jan 02
3
best to integrate dynamic navbar into layout
...e="home" border="0" src="/images/home_dark.gif" alt="home"></a></td>'' else @home_link = ''<td width="80" class="button_background" valign="top"><a href="/store/home/" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\''home\'',\''\'',\''/images/home_bright.gif\'',1)"><img name="home" border="0" src="/images/home.gif" alt="home_button"></a>...
2008 Jun 20
3
problems using effects.morph && effect.appear
...i wrote a sliding navigation using effect.morph and effect.appear. I don''t know why but there are a couple of problems: 1. effect.appear seems not to work in IE6 2. The effects aren''t really "smooth". 3. When using effect appear. The new element triggers onmouseover the onmouseout function.... It''s a small script: www.rhizom.nl/volkan/scriptalicous First version was in mootools later i found out that magento uses scriptalicous.... www.rhizom.nl/volkan/moo gr Volkan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are s...
2006 Jul 25
8
Calender Script?
I have been trying to get one of the calender javascripts to work with the <%= form.text_field. So when the user pick the date it updates the time fields? (like in normal reservation system where you pick up the date and time from the calender and when user pick the selection it updates the field) but I could not get this to work. Does anyone have got something similar to work? or could