i know basics of HTML and CSS can i learn Ruby on Rails without javascript ?? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/5ipTFhJmJy4J. For more options, visit https://groups.google.com/groups/opt_out.
Yes you can, but you shouldn''t, you should learn some basic javascript before you learn rails. You can replace ruby and rails on the server-side by any other or language or framework, but you can''t replace client-side javascript. My advice is, learn at least enough javascript to understand ajax and basic dom manipulation, than learn rails. * Luis Va**sconcellos,** *Web Developer twitter: @vasconcelloslf <http://www.twitter.com/vasconcelloslf> mobile: 55 21 95100576 DTM | Simplifying Ideas http://dtmtec.com.br <http://www.dtmtec.com.br> @dtmtec <http://www.twitter.com/dtmtec> On Mon, Nov 5, 2012 at 10:40 AM, amr mohamed <android.bel3arbe-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> i know basics of HTML and CSS can i learn Ruby on Rails without javascript > ?? > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msg/rubyonrails-talk/-/5ipTFhJmJy4J. > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
I respectfully disagree. For someone without development experience, I wouldn''t recommend learning yet another language on top of Ruby and Rails. In fact, I would say that a better starting point would be Sinatra (and erb templates). This allows someone familiar with HTML and CSS to ease into learning Ruby but at the same time getting the instant gratification of seeing dynamic content in their pages. For those of us who have been immersed in software development for a while, it''s easy to forget how steep the learning curve is. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Maybe providing the OP with links or online tutors on enough js to be useful for rails as to avoid the overlearning step developing in large frameworks. On Wed, Nov 7, 2012 at 9:02 AM, Luis Vasconcellos <vasconcelloslf-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Yes you can, but you shouldn''t, you should learn some basic javascript > before you learn rails. You can replace ruby and rails on the server-side by > any other or language or framework, but you can''t replace client-side > javascript. My advice is, learn at least enough javascript to understand > ajax and basic dom manipulation, than learn rails. > > > Luis Vasconcellos, Web Developer > > twitter: @vasconcelloslf > mobile: 55 21 95100576 > > DTM | Simplifying Ideas > http://dtmtec.com.br > @dtmtec > > > > On Mon, Nov 5, 2012 at 10:40 AM, amr mohamed <android.bel3arbe-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > wrote: >> >> i know basics of HTML and CSS can i learn Ruby on Rails without javascript >> ?? >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To view this discussion on the web visit >> https://groups.google.com/d/msg/rubyonrails-talk/-/5ipTFhJmJy4J. >> For more options, visit https://groups.google.com/groups/opt_out. >> >> > > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
You are embarking on learning programming. A framework like rails is going to be a bit overwhelming at first. Try just learning Ruby from the irb console (this lets you play with the language). You''ll need to understand concepts like flow control, looping, memory and basic concepts around classes and objects to get started. Once that''s done, move on to Rails. There is going to be a lot to digest. Java Script is not required to use rails although in Rails 3 it''s become pervasive and currently can not be avoided if you want a modern web UI (Rails 2 it could). That said, learn Ruby first and also get a firm grasp of HTML forms. Java Script and in particular AJAX are more difficult to learn so leave those till last. They are not required to write working apps in rails. Good Luck! Tony Thompson MS/CS/CU On Monday, November 5, 2012 5:40:25 AM UTC-7, amr mohamed wrote:> > i know basics of HTML and CSS can i learn Ruby on Rails without javascript > ?? >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/xQMD5Uee9nYJ. For more options, visit https://groups.google.com/groups/opt_out.