Navigation

    Lanka Developers Community

    Lanka Developers

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Tags
    3. html5
    Log in to post
    • F

      FRONTEND/ui/js/mysql/php
      Job Portal • css html5 javascript job ui designing • • Fedde

      6
      1
      Votes
      6
      Posts
      124
      Views

      F

      Still open if anyone is interested, mainly frontend work (html5, js, bootstrap4)

    • Pasindu Vishmika

      Get New Udemy Paid Courses For Free !
      Announcements • forex html5 python • • Pasindu Vishmika

      3
      2
      Votes
      3
      Posts
      41
      Views

      Pasindu Vishmika

      @Nubelle 🙂 ❤

    • Pasindu Vishmika

      Udemy Free Courses (Few Hours remaining) Enroll fast
      Announcements • c++ html5 java java script python • • Pasindu Vishmika

      3
      2
      Votes
      3
      Posts
      131
      Views

      Pasindu Vishmika

      @Nubelle ❤ 🙂

    • Fospertise

      UI/UX Developer Vacancy - Part-time
      UI / UX • css front-end html5 java script • • Fospertise

      5
      0
      Votes
      5
      Posts
      117
      Views

      Fospertise

      @Grasshopper SharedScreenshot.jpg

    • kasun viduranga

      PHP zend framework project āļ‘āļšāļšāˇŠ host āļšāļģāļąāˇŠāļą āļšāˇ™āļąāˇ™āļšāˇŠ āļ‰āļąāˇŠāļąāˇ€ āļąāļ¸āˇŠ āļšāˇ’āļēāˇāļ¯āˇ™āļąāˇŠāļą.
      Web Development • html5 java script mysql php • • kasun viduranga

      10
      0
      Votes
      10
      Posts
      40
      Views

      ijseGovindu

      https://stackoverflow.com/questions/3903127/hosting-php-zend-framework-application-on-shared-cpanel-server

    • kasun viduranga

      Angular ⎀āļŊāļ§ use āļšāļģāļą npm packages HTML ⎀āļŊāļ§ use āļšāļģāļąāˇŠāļą āļ´āˇ”⎅⎔⎀āļąāˇŠāļ¯ ?
      Web Development • angular html5 javascript npm php • • kasun viduranga

      3
      0
      Votes
      3
      Posts
      82
      Views

      root

      @kasun-viduranga

      Angular walata hadapuwa nam ba , anith ewa puluwan

    • kasun viduranga

      html ⎀āļŊāļ§ use āļšāļģāļą google āˇƒāˇ’āļ‚⎄āļŊ font āļ­āˇ’āļē⎙āļąāˇ€āļ¯ ? āļ’ āļ¸āˇœāļąāˇ€āļ¯ ?
      Front-End Development • angular css html5 javscript programming • • kasun viduranga

      8
      1
      Votes
      8
      Posts
      424
      Views

      root

      ow me font eka convert karana web font ekata.

      https://www.fontsquirrel.com/tools/webfont-generator

    • Supun Dissanayake

      HTML5 āˇƒāˇ’āļ‚⎄āļŊ āļ´āļģ⎒⎀āļģ⎊āļ­āļąāļē
      Front-End Development • funproject html5 javascript programming webpack • • Supun Dissanayake

      8
      5
      Votes
      8
      Posts
      698
      Views

      ushanmithma

      āˇƒāˇ”āļ´āˇ’āļģ⎒ ⎀⎐āļŠāļšāˇŠāļąāˇš

    • D

      Excel sheet āļ‘āļšāļšāˇŠ firebase āļ‘āļšāļ§ upload āļšāļģāļŊāˇ angular website āļ‘āļšāļš table āļ‘āļšāļšāˇŠ ⎀⎒āļ¯āˇ’āļēāļ§ display āļšāļģāļąāˇŠāļąāˇš āļšāˇœāˇ„āˇœāļ¸āļ¯?
      Web Development • angular firebase firestore html5 • • DPiyumantha

      7
      1
      Votes
      7
      Posts
      306
      Views

      dev_lak

      @DPiyumantha elaa ,,monwa hari tynwnm ahanna

    • kasun viduranga

      windows on-screen keyboard āļ‘āļš javascript ⎀āļŊ⎒āļąāˇŠ open āļšāļģāļœāļąāˇŠāļąāˇ™ āļšāˇœāˇ„āˇœāļ¸āļ¯?
      Web Development • html5 javascript jquery php • • kasun viduranga

      5
      0
      Votes
      5
      Posts
      330
      Views

      root

      @dev_lak plain JavaScript one man hithanne

    • akashmanujaya

      How to change two input fields with one onchange event
      Back-End Development • ajax html5 javascript php • • akashmanujaya

      2
      0
      Votes
      2
      Posts
      211
      Views

      tnlthanzeel

      you can write all your javascripts in on tag.

      <script>
      function getdoctor(val) {
      $.ajax({
      type: "POST",
      url: "../get_doctor.php",
      data:'specilizationid='+val,
      success: function(data){
      // i assume that your data on ajaxs success has 2 properties in the object
      $("#input1").val(data.item1);
      $("#input2").val(data.item1);
      }
      });
      }
      </script>

    • Dinuwan Kalubowila

      ASP.NET Razor Pages
      Back-End Development • asp.net c sharp html5 mvc • • Dinuwan Kalubowila

      3
      0
      Votes
      3
      Posts
      351
      Views

      tnlthanzeel

      with dotnet framewor mvc 4 and above u can use

      @{
      List<SelectListItem> listItems= new List<SelectListItem>();
      listItems.Add(new SelectListItem
      {
      Text = "Exemplo1",
      Value = "Exemplo1"
      });
      listItems.Add(new SelectListItem
      {
      Text = "Exemplo2",
      Value = "Exemplo2",
      Selected = true
      });
      listItems.Add(new SelectListItem
      {
      Text = "Exemplo3",
      Value = "Exemplo3"
      });
      }

      @Html.DropDownListFor(model => model.tipo, listItems, "-- Select Status --")

    • S

      Html css āļ¯āļąāˇŠāļą āļšāˇ™āļąāˇ™āļšāˇŠāļœāˇ™āļąāˇŠ āļ‹āļ¯āˇ€āˇ”⎀āļšāˇŠ āļ•āļąāˇ“
      Web Development • html5 • • sumiyuru

      3
      0
      Votes
      3
      Posts
      538
      Views

      Sahan Pasindu Nirmal

      āļ¸āˇœāļšāļ¯āˇŠāļ¯ āˇƒāˇ„āˇ?

    • Radika Dilanka

      HTML ⎀āļŊ⎒āļąāˇŠ Mobile App āļ‘āļšāļšāˇŠ ⎄āļ¯āļ¸āˇ” āˇ„āˇāļŠāˇ’āļē⎚ āˇƒāˇ’āļ§
      Mobile Application Development • html html5 java script mobile app php • • Radika Dilanka

      13
      3
      Votes
      13
      Posts
      2224
      Views

      Radika Dilanka

      @Nipun-Bro comment ekata isthuti. kragena yamu.

    • kusalrathna

      Create A Custom HTML5 Video Player
      Front-End Development • developing front-end html5 javascript • • kusalrathna

      7
      3
      Votes
      7
      Posts
      789
      Views

      kusalrathna

      @b6 thanks machan

    • b6

      👉👉 Important things you should avoid in CSS Style Sheet
      Web Development • beginner css html html5 web designing • • b6

      7
      2
      Votes
      7
      Posts
      747
      Views

      b6

      @dev_lak thank you

    • kusalrathna

      Flash Game āļ‘āļšāļ§ Custom Mouse Pointer āļ‘āļšāļšāˇŠ ⎄āļ¯āļ¸āˇ”
      Blogs • developing flash gamedev html5 • • kusalrathna

      7
      2
      Votes
      7
      Posts
      1080
      Views

      kusalrathna

      @dev_lak Thanks bro

    • F

      Jquery Plugin for multiple image upload
      Front-End Development • ajax html5 jquery • • fern

      21
      1
      Votes
      21
      Posts
      2203
      Views

      F

      download manager ekak widiyata e app eka hadanna one machan

    • 1 / 1