Displaying 2 results from an estimated 2 matches for "ganatra".
2007 Oct 24
5
How can I hide a DIV with a success message inside?
I want to have something like Facebook has. In some cases when you
post something a success message shows up (on the same page, not a pop-
up), stays 2-3 seconds and then fades away.
How can I do that with Prototype?
Thanks.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group.
2008 Jul 10
1
Ellipsis arguments for plot.formula
Hi:
I have a function as follows:
my.plot <- function( x, y = NULL, ... )
{
plot( x, y, cex.axis=0.5, ...)
}
Set up the variables:
x <- 1:10; y <- x; tdf <- data.frame( x, y ); main.str <- "test"
I will exercise the function in two ways:
> my.plot( y ~ x, tdf, main = "test" )
This works fine
> my.plot( y ~ x, tdf, main = main.str )
Error in