Skip to main content
replaced http://stackoverflow.com/ with https://stackoverflow.com/
Source Link
URL Rewriter Bot
URL Rewriter Bot

As this question here suggests

jQuery selector for matching at start AND end of IDjQuery selector for matching at start AND end of ID

You should do the following:

$("input[name ^=//[13//]][name $=//[0//]")

So it reads if the name starts with [13] and ends with [0]

The backslashes '//' are used to tell jQuery that '[' and ']' are not it's reserved brackets.

Edit:

The proper answer is thanks to:

ᾠῗᵲᄐᶌᾠῗᵲᄐᶌ

In the comments below :)

As this question here suggests

jQuery selector for matching at start AND end of ID

You should do the following:

$("input[name ^=//[13//]][name $=//[0//]")

So it reads if the name starts with [13] and ends with [0]

The backslashes '//' are used to tell jQuery that '[' and ']' are not it's reserved brackets.

Edit:

The proper answer is thanks to:

ᾠῗᵲᄐᶌ

In the comments below :)

As this question here suggests

jQuery selector for matching at start AND end of ID

You should do the following:

$("input[name ^=//[13//]][name $=//[0//]")

So it reads if the name starts with [13] and ends with [0]

The backslashes '//' are used to tell jQuery that '[' and ']' are not it's reserved brackets.

Edit:

The proper answer is thanks to:

ᾠῗᵲᄐᶌ

In the comments below :)

added 178 characters in body
Source Link
Vect0rZ
  • 401
  • 2
  • 6

As this question here suggests

jQuery selector for matching at start AND end of ID

You should do the following:

$("input[name ^=//[13//]][name $=//[0//]")

So it reads if the name starts with [13] and ends with [0]

The backslashes '//' are used to tell jQuery that '[' and ']' are not it's reserved brackets.

Edit:

The proper answer is thanks to:

ᾠῗᵲᄐᶌ

In the comments below :)

As this question here suggests

jQuery selector for matching at start AND end of ID

You should do the following:

$("input[name ^=//[13//]][name $=//[0//]")

So it reads if the name starts with [13] and ends with [0]

The backslashes '//' are used to tell jQuery that '[' and ']' are not it's reserved brackets.

As this question here suggests

jQuery selector for matching at start AND end of ID

You should do the following:

$("input[name ^=//[13//]][name $=//[0//]")

So it reads if the name starts with [13] and ends with [0]

The backslashes '//' are used to tell jQuery that '[' and ']' are not it's reserved brackets.

Edit:

The proper answer is thanks to:

ᾠῗᵲᄐᶌ

In the comments below :)

Source Link
Vect0rZ
  • 401
  • 2
  • 6

As this question here suggests

jQuery selector for matching at start AND end of ID

You should do the following:

$("input[name ^=//[13//]][name $=//[0//]")

So it reads if the name starts with [13] and ends with [0]

The backslashes '//' are used to tell jQuery that '[' and ']' are not it's reserved brackets.