
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
jQuery Mobile: Sending data from one page to the another
To pass values, let us say our <a> is the following, with page new.html,
<a href="new.html?structure='123'">Structure</a>
The JS will be:
$( document ).on( "pageinit", "#new", function( event ) { var myParam = $(this).data("url").split("?")[1]; myParam = parameters.replace("structure=",""); alert(myParam); });
- Related Questions & Answers
- How to handle navigation from one page to another in react native?
- Insert data from one table to another in MySQL?
- Insert data from one schema to another in MySQL?
- Send data from one Fragment to another using Kotlin?
- How to subtract one data frame from another in R?
- Passing data from one report to another in ABAP using SUBMIT
- Update data in one table from data in another table in MySQL?
- How to pass multiple data from one activity to another in Android?
- How to pass data from one fragment to another fragment in android?
- How to send data from one Fragment to another Fragment in Android?
- How to send data from one activity to another in Android using intent?
- How to send data from one activity to another in Android using bundle?
- How to send data from one activity to another in Android without intent?
- MySQL statement to copy data from one table and insert into another table
- Simplest way to copy data from one table to another new table in MySQL?
Advertisements