Jump to content

ishan_shah

Members
  • Posts

    90
  • Joined

  • Last visited

About ishan_shah

  • Birthday 11/07/1995

Contact Methods

  • Website URL
    https://www.ifourtechnolab.com/

Profile Information

  • Gender
    Male
  • Location
    Ahmedabad
  • Interests
    HTML, CSS, JavaScript, C#

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

ishan_shah's Achievements

Newbie

Newbie (1/7)

2

Reputation

  1. try to add all images in that imageContainer class div,do not create new div every time.
  2. here is an example with full detail, please take a look:https://www.w3schools.com/howto/howto_js_slideshow.asp
  3. try this: $( "#datepicker" ).datepicker({ minDate: Today});
  4. You can also archive this by removing that display css property.
  5. may be its their site's bug or just check if you have added space or something else because that area will allow only 7 letters
  6. You can use it like this: window.open('https://www.w3schools.com', '_blank');
  7. Its should be working fine ,please recheck you have targeted right ID everytime,if this doesn't solve your problem please provide your code so other's can take a look and find what's wrong.
  8. add parameter in your onClick call like '().'
  9. Try to make sure you have called right event on every position like onMouseUp, onMouseDown. Recheck your code ,if it doesn't solve it please provide your code so others can take a decent look into your problem.
  10. try this: <form> <select name="list" id="list" accesskey="target"> <option value='none' selected>Choose a theme</option> <option value="https://en.wikipedia.org/wiki/New_Delhi">New Delhi</option> <option value="https://en.wikipedia.org/wiki/Gujarat">Gujarat</option> <option value="https://en.wikipedia.org/wiki/New_Delhi">New delhi</option> </select> <input type=button value="Go" onclick="goToNewPage()" /> </form> and JS file: function goToNewPage() { var url = document.getElementById('list').value; if(url != 'none') { window.location = url; } }
  11. you can simply apply js for that switch button for targeting image properties ,like "Show" and "Hide".
  12. You can only apply one link per one card, there is no way you can use multiple links for single card, at least that I know of
  13. This might help you: .imageClass:hover{ background:url("anotherImageUrl") no-repeat; }
  14. you can manually find error in css file by check which section is not working Or you can use this website to find syntax error in css file:http://beautifytools.com/css-validator.php For js you can use in firefox.
  15. May be this will help you: https://stackoverflow.com/questions/11360090/how-to-trigger-google-maps-weather-layer-marker-click
×
×
  • Create New...