• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Image slider with JavaScript

 
Greenhorn
Posts: 5
Android Chrome Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm new to programming JavaScript - taking my first class now. I have been designing in HTML for quite some time. Yes, Designing, not Developing. I was wondering if it's possible to create an image slider that responds to user interaction (user control) using JavaScript? Orrr, would I need to learn a more powerful programming language, like PHP?

Any suggestions?
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
PHP runs on the server it would not help in any way of building user interaction on the clientside. PHP is not more powerful ;)

 
Sheriff
Posts: 67754
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
PHP runs on the server as a templating mechanism to format the HTML page -- which can contain JavaScript, by the way -- to send to the browser.

PHP and JavaScript in no way compete, and it cannot be said that one is more powerful than the other as they are two tools that serve very different purposes. Sort of like saying that a steering wheel is more powerful than the brakes.
 
Bear Bibeault
Sheriff
Posts: 67754
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Now, back to your question: what do you mean by "image slider"?
 
Mark Peterson
Greenhorn
Posts: 5
Android Chrome Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Image slider like the one on www.wowslider.com.
 
Bear Bibeault
Sheriff
Posts: 67754
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, considering that the site you linked to is a JavaScript plugin for jQuery, then yes, it can be done in JavaScript.
reply
    Bookmark Topic Watch Topic
  • New Topic