ItSolutionStuff.com

AngularJS Update Bind Ng-model Input Value from JQuery Example

By Hardik Savani • October 20, 2023
Javascript jQuery Angular

Sometimes, we require to set value of input box from js code, But if you bind with ng-model of angular then you can't set value directly with "val()" of jquery. As Bellow example:

$("#my-name").val('test');

But of you set this way then it will display in your text box layout, but you can't get from on submit function. So, you have to also trigger input that way AngularJS can get on controller method.

You can see bellow full example that way you can understand how to solve this issue:

Example:

<!DOCTYPE html>

<html>

<head>

<title>AngularJS - update bind ng-model input value from Jquery Code</title>

<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>

<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>

</head>

<body>


<div ng-app="mainApp" ng-controller="myController" id="mainController">


<form name="form" ng-submit="submitForm()">

<input type="text" ng-model="form.name" id="my-name" />

<button type="button" class="change-value">Change Value</button>

<button type="submit">Submit</button>

</form>


</div>


<script type="text/javascript">

var mainApp = angular.module("mainApp", []);


mainApp.controller('myController', function($scope, $timeout) {


$scope.submitForm = function() {

console.log($scope.form.name);

}


});

</script>


<script type="text/javascript">

$('.change-value').click(function(){

var myInput = $("#my-name");

myInput.val('test');

myInput.trigger('input');

});

</script>


</body>

</html>

Maybe it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

AngularJS Filter Change Date Format in Controller Example

Read Now →

AngularJS Remove Duplicates Object from Array Example

Read Now →

AngularJS Drag and Drop Table Rows Example with Demo

Read Now →

PHP AngularJS Populate Dynamic Dropdown Example

Read Now →

AngularJS Scroll to a Specific Element using Anchorscroll

Read Now →

AngularJS Convert Comma Separated String to Array Example

Read Now →

AngularJS - How to Create Read More/Less Toggle using Directive?

Read Now →

AngularJS Display Default Image If Original Does Not Exists Example

Read Now →

How to Call AngularJS Controller Function in JQuery?

Read Now →

AngularJS Image Upload with Preview Example

Read Now →

How to Hide Div After Some Time in AngularJS?

Read Now →

AngularJS Simple Datepicker Directive Example Tutorial

Read Now →