Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Copyright (c) 2007 Net Collective.
- var Rules = {
- ".ccDetailFields": function(element)
- {
- //Element.hide(element);
- }
- }
- function slideCCForm(element, foo)
- {
- if(Element.visible(element) && (foo == "specify" || foo == "up"))
- {
- Effect.SlideUp(element, { duration: 0.55 });
- }
- else if(Element.visible(element) == false && (foo == "creditcard" || foo == "down"))
- {
- Effect.SlideDown(element, { duration: 0.55 });
- }
- }
- window.onload = function()
- {
- EventSelectors.start(Rules);
- }
Add Comment
Please, Sign In to add comment