All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.scalajs.jquery.package.scala Maven / Gradle / Ivy

The newest version!
package io.scalajs

import scala.scalajs.js

/**
  * jquery package object
  * @author [email protected]
  */
package object jquery {

  /**
    * A string containing a selector expression
    */
  type Selector = String


  /**
    * JQuery Enrichment
    * @param element the given [[JQueryElement]]
    */
  implicit class JQueryEnrichment(val element: JQueryElement) extends AnyVal {

    @inline
    def attr(name: String, function: (Int, String) => String): element.type = {
      element.attr(name, function: js.Function2[Int, String, String])
    }

  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy