Jump to content

Multiple values in a JQ function


Pavlos1316

Recommended Posts

Hello,

 

Below is a part of my validation function in jq...

function{
if(str.val().length = 0){
//some code
}
else{
str.removeClass("aclass");
//more code
}
}

In the first line I want to check if any of my fields is empty [e.g. f1 or f2 or f3 .val() empty)]

and at the second line I want to remove the class from all of them again [e.g. f1 & f2 &f3 .removeClass]

 

How to I write this in jq?

 

Thank you

Link to comment
https://forums.phpfreaks.com/topic/242929-multiple-values-in-a-jq-function/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.